We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82658dc commit 8fe89b9Copy full SHA for 8fe89b9
buildScripts/startMessage.js
@@ -0,0 +1,3 @@
1
+var chalk = require('chalk');
2
+
3
+console.log(chalk.green('Starting app in dev mode..'));
package.json
@@ -3,7 +3,12 @@
"version": "1.0.0",
4
"description": "Work out how to do mordern javascript development",
5
"scripts": {
6
-
+ "prestart" : " node buildScripts/startMessage.js",
7
+ "start" : "npm-run-all --parallel security-check open:src",
8
+ "open:src" : "node buildScripts/srcServer.js",
9
+ "security-check": "nsp check",
10
+ "localtunnel": "lt --port 4000",
11
+ "share": "npm-run-all --parallel open:src localtunnel"
12
},
13
"author": "Tyson Brown",
14
"license": "MIT",
0 commit comments