added more convenient dev scripts

This commit is contained in:
noncomputable 2018-08-02 00:49:39 -04:00
parent 4b32d6d8f0
commit 266dbbdcbc

View File

@ -6,9 +6,10 @@
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "npx webpack",
"prepublish": "npm run bundle",
"make-docs": "jsdoc src site/docs/DOCS.md -d site/docs",
"make-dev-docs": "jsdoc src site/devdocs/DEVDOCS.md -d site/devdocs -p",
"publish-pages": "gh-pages -d site"
"make-docs": "cp README.md site\\docs\\DOCS.md & cp README.md site\\devdocs\\DEVDOCS.md & npm run make-usr-docs & npm run make-dev-docs",
"make-usr-docs": "jsdoc src site\\docs\\DOCS.md -d site\\docs",
"make-dev-docs": "jsdoc src site\\devdocs\\DEVDOCS.md -d site\\devdocs -p",
"publish-pages": "cp README.md site\\index.md & gh-pages -d site"
},
"main": "src/index.js",
"repository": {