Skip to content

Commit e2a3b39

Browse files
committed
clean up package.json scripts and start message
1 parent afcb59e commit e2a3b39

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dev/customize/startMessage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import chalk from 'chalk';/*eslint-disable no-console*/
22

3-
console.log( chalk.greenBright('\nnode-mongo-cli: running in dev mode...\n') );
3+
console.log( chalk.greenBright('\nℹ Collabo Community "Create Collabo App": running in dev mode...\n') );

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"nmgo": "bin/create-node-mongo-project"
1010
},
1111
"scripts": {
12-
"prestart": "node -r esm dev/customize/startMessage.js",
13-
"start": "npm-run-all --parallel lint:watch",
12+
"predev": "node -r esm dev/customize/startMessage.js",
13+
"dev": "npm-run-all --parallel ts:watch lint:watch",
1414
"lint": "esw src --color",
1515
"lint:watch": "npm run lint -- --watch",
16+
"ts:watch": "tsc -w",
17+
"cleanup": "node -r esm dev/cleanup.js",
1618
"test": "npm-run-all --parallel test-message dev-test",
1719
"dev-test": "nodemon --exec babel-node spec/run.js",
1820
"CI-test": "babel-node spec/run.js",
19-
"test-message": "node -r esm src/dev/customize/testMessage",
20-
"cleanup": "node -r esm dev/cleanup.js",
21-
"ts:watch": "tsc -w"
21+
"test-message": "node -r esm src/dev/customize/testMessage"
2222
},
2323
"repository": {
2424
"type": "git",

0 commit comments

Comments
 (0)