|
20 | 20 | "scripts": {
|
21 | 21 | "build": "npm run clear && webpack --mode production",
|
22 | 22 | "build:dev": "npm run clear && webpack --mode development",
|
| 23 | + "build:site": "webpack --mode development --config webpack.site.config.js", |
| 24 | + "build:docs": "node ./tools/make_examples_readme.js && node ./tools/make_stdlib_cheatsheet.js", |
| 25 | + "dev:site": "webpack --mode development --config webpack.site.config.js --watch", |
23 | 26 | "dev": "npm run clear && webpack --mode development --watch",
|
24 | 27 | "clear": "rimraf ./dist",
|
25 | 28 | "publish": "bump --commit && node ./tools/publish.js",
|
26 | 29 | "publish:ci": "node ./tools/publish.js",
|
27 | 30 | "release": "bump --commit --tag && git push --follow-tags",
|
28 |
| - "docs:update": "node ./tools/stdlib_doc.js", |
29 |
| - "make_examples_readme": "node ./tools/make_examples_readme.js", |
30 |
| - "make_ide": "node ./tools/make_ide.js", |
31 |
| - "make_site": "node ./tools/make_site.js", |
32 |
| - "ide:dev": "nodemon --ignore build,dist ./tools/make_ide.js", |
33 |
| - "site:dev": "nodemon --ignore build,dist ./tools/make_site.js", |
34 | 31 | "test": "mocha --require mocha-snapshots",
|
35 | 32 | "test:update": "mocha --require mocha-snapshots --update",
|
36 | 33 | "lint:fix": "npm run lint -- --fix",
|
|
0 commit comments