|
24 | 24 | "test:watch": "npm run test:coverage --watch",
|
25 | 25 | "test": "npm run test:coverage",
|
26 | 26 | "pretest": "npm run lint",
|
27 |
| - "prepare": "rimraf ./ssl/*.pem && npm run -s transpile:index && npm run transpile:clients && npm run -s build:live && npm run -s build:index && npm run -s build:sockjs", |
28 |
| - "transpile:index": "babel client-src/default --out-dir client --ignore \"./client-src/default/*.config.js\"", |
29 |
| - "transpile:clients": "babel client-src/clients --out-dir client/clients", |
30 |
| - "build:index": "webpack ./client-src/default/index.js -o client/index.bundle.js --color --config client-src/default/webpack.config.js", |
31 |
| - "build:live": "webpack ./client-src/live/index.js -o client/live.bundle.js --color --config client-src/live/webpack.config.js", |
32 |
| - "build:sockjs": "webpack ./client-src/sockjs/index.js -o client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js", |
| 27 | + "prepare": "rimraf ./ssl/*.pem && npm run build:client", |
| 28 | + "build:client:default": "babel client-src/default --out-dir client --ignore \"./client-src/default/*.config.js\"", |
| 29 | + "build:client:clients": "babel client-src/clients --out-dir client/clients", |
| 30 | + "build:client:index": "webpack ./client-src/default/index.js -o client/index.bundle.js --color --config client-src/default/webpack.config.js", |
| 31 | + "build:client:live": "webpack ./client-src/live/index.js -o client/live.bundle.js --color --config client-src/live/webpack.config.js", |
| 32 | + "build:client:sockjs": "webpack ./client-src/sockjs/index.js -o client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js", |
| 33 | + "build:client": "rimraf ./client/* && npm-run-all -s -l -p \"build:client:**\"", |
33 | 34 | "webpack-dev-server": "cd $INIT_CWD && node ../../../bin/webpack-dev-server.js",
|
34 | 35 | "release": "standard-version"
|
35 | 36 | },
|
|
0 commit comments