Use explicit CLI script names

This commit is contained in:
Rob Garrison 2018-07-21 08:22:50 -05:00
parent e855ac2c0b
commit 5ee5fd0e02

View File

@ -19,11 +19,11 @@
"updates": "^4.0.0"
},
"scripts": {
"build": "npm run update && npm run versions && npm run build:cm",
"build": "npm run update-node && npm run update-versions && npm run build:cm",
"build:cm": "node tools/update-libraries.js && node tools/update-codemirror-themes.js",
"lint": "eslint **/*.js || true",
"update": "updates -u && npm update",
"versions": "node tools/update-versions",
"zip": "npm run versions && node tools/zip.js"
"update-node": "updates -u && npm update",
"update-versions": "node tools/update-versions",
"zip": "npm run update-versions && node tools/zip.js"
}
}