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 0c44f46 commit 8718758Copy full SHA for 8718758
cli.js
@@ -1,6 +1,10 @@
1
#!/usr/bin/env node
2
3
const { exec } = require('shelljs')
4
+const updateNotifier = require('update-notifier');
5
+const pkg = require('./package.json');
6
+
7
+updateNotifier({ pkg }).notify();
8
9
exec('npm start -- ' + process.argv.join(' '), {
10
async: true,
package.json
@@ -36,7 +36,8 @@
36
"babel-polyfill": "^6.20.0",
37
"babel-preset-node6": "^11.0.0",
38
"jest": "^18.1.0",
39
- "request-promise": "^4.1.1"
+ "request-promise": "^4.1.1",
40
+ "update-notifier": "^1.0.3"
41
},
42
"execMap": {
43
"js": "micro"
0 commit comments