Skip to content

Commit

Permalink
Build 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rajinder-yadav committed Mar 1, 2019
1 parent 2239fc4 commit 4ce9f3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/create-js-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function createJSProject( cmd: any, options: any ): void {
break;
}

case 'graphql': {
case 'gql': {
console.log( 'DM-Tools is generating a TypeScript Apollo GraphQL Server project...' );
sh.cp( '-r', path.resolve( __dirname, '../../.templates/apollo-graphql-server/' ), `${ options.project }` );
break;
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cmd
.version( `DevMentor Tools Project Generator v${ VERSION }`, '-v, --version' )
.usage( '<command> <project> [options...]\n\n commands: new' )
.arguments( '<command> <project>' )
.option( '-t, --type <type>', 'project types: glq, js, koa, node, ts, web' )
.option( '-t, --type <type>', 'project types: gql, js, koa, node, ts, web' )
.option( '--e2e', 'end to end testing' )
.option( '-w, --web', 'simple static Web setup' )
.option( '--cpp [items]', 'C++ project', source_files )
Expand Down

0 comments on commit 4ce9f3b

Please sign in to comment.