Last active
November 8, 2017 13:40
-
-
Save pawelgalazka/8eefbded4148a8cacdffe66584453f3e to your computer and use it in GitHub Desktop.
npm scripts downsides - medium article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"build_closure_core": "node ./tools/make-closure-core.js", | |
"build_global": "npm-run-all clean_dist_global build_esm5_for_rollup && mkdirp ./dist/global && node ./tools/make-umd-bundle.js && npm-run-all build_closure_core clean_dist_esm5_for_rollup", | |
"build_perf": "webdriver-manager update && npm-run-all build_cjs build_global perf", | |
"decision_tree_widget": "cd doc/decision-tree-widget && npm run build && cd ../..", | |
"generate_packages": "node .make-packages.js", | |
"perf_micro": "node ./perf/micro/index.js", | |
"tests2png": "tsc && mkdirp tmp/docs/img && mkdirp spec-js/support && shx cp spec/support/*.opts spec-js/support/ && mocha --opts spec/support/tests2png.opts spec-js", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment