UNPKG

@fireenjin/cli

Version:

A set of tools for speeding up production of full-stack Firebase projects.

12 lines (10 loc) 297 B
import { BuildSchemaOptions } from "type-graphql"; import buildSchema from "../grapqhl/buildSchema"; import fs from "fs"; export default async (config: any) => { const task = process.argv[3]; if (task === "start") { } else { buildSchema(config?.graphql?.build || {}); } };