We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 069cf60 commit 871f2a0Copy full SHA for 871f2a0
bin/graphpack.js
@@ -35,6 +35,5 @@ const createProductionBuild = () => {
35
};
36
37
require('yargs')
38
- .command(['$0', 'dev'], 'Run development mode', {}, startDevServer)
39
- .command('build', 'Create a production build', {}, createProductionBuild)
40
- .argv;
+ .command(['$0', 'dev'], 'Start graphpack dev server', {}, startDevServer)
+ .command('build', 'Create production build', {}, createProductionBuild).argv;
0 commit comments