|
12 | 12 | ],
|
13 | 13 | "scripts": {
|
14 | 14 | "serve-static": "live-server --open=demo --watch=build/o_spreadsheet.js,build/o_spreadsheet.xml,demo",
|
15 |
| - "dev": "npm-run-all build --parallel server serve-static watch:*", |
| 15 | + "dev": "npm-run-all --print-label build --parallel server serve-static watch:*", |
16 | 16 | "server": "node tools/server/main.js",
|
17 | 17 | "build:js": "tsc --module es6 --incremental",
|
18 |
| - "bundle:js": "rollup -c -m --configDev", |
19 |
| - "bundle:xml": "node tools/bundle_xml/main.js", |
20 |
| - "build": "npm-run-all build:js bundle:js \"bundle:xml -- --outDir build\"", |
| 18 | + "build:bundleJs": "rollup -c -m --configDev", |
| 19 | + "build:bundleXml": "node tools/bundle_xml/main.js", |
| 20 | + "build": "npm-run-all build:js build:bundleJs \"build:bundleXml -- --outDir build\"", |
21 | 21 | "doc": "typedoc",
|
22 | 22 | "precommit": "npm run prettier && npm run doc",
|
23 | 23 | "test": "jest",
|
24 | 24 | "test:watch": "jest --watch",
|
25 | 25 | "prettier": "prettier . --write",
|
26 | 26 | "check-formatting": "prettier . --check",
|
27 |
| - "dist": "tsc --module es6 --declaration --declarationDir dist/types && rollup -c && npm run bundle:xml -- --outDir dist", |
| 27 | + "dist": "tsc --module es6 --declaration --declarationDir dist/types && rollup -c && npm run build:bundleXml -- --outDir dist", |
28 | 28 | "prepare": "husky install",
|
29 |
| - "watch:bundle": "npm run bundle:js -- --watch", |
| 29 | + "watch:bundle": "npm run build:bundleJs -- --watch", |
30 | 30 | "watch:ts": "npm run build:js -- --watch",
|
31 | 31 | "watch:xml": "node tools/bundle_xml/watch_xml_templates.js",
|
32 | 32 | "unzipXlsx": "node tools/bundle_xlsx/unzip_xlsx_demo.js",
|
|
0 commit comments