We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d2482 commit b0d7a3dCopy full SHA for b0d7a3d
scripts.js
@@ -13,8 +13,14 @@ const exec = (str, opts) => {
13
14
const task = process.argv[2]
15
16
-if (task == null || task === '') return console.log('Nothing to do!')
+if (task == null || task === '') {
17
+ console.log('Nothing to do, valid commands are:\n')
18
+ console.log('1. `node scripts.js version 0.0.1` (to update version)')
19
+ console.log('2. `node scripts.js install` (cloning this project for the first time)')
20
+ console.log('3. `node scripts.js gh-pages` (build webapp for github pages)')
21
22
+ return
23
+}
24
/**
25
* Update all packages on this project to a new version.
26
*
0 commit comments