|
7 | 7 | "types": "build/npm/types/index.d.ts",
|
8 | 8 | "sideEffects": false,
|
9 | 9 | "scripts": {
|
10 |
| - "build": "run-p build:rollup build:types build:bundle", |
11 |
| - "build:rollup": "rollup -c rollup.npm.config.js", |
| 10 | + "build": "run-p build:transpile build:types build:bundle", |
| 11 | + "build:transpile": "rollup -c rollup.npm.config.js", |
12 | 12 | "build:bundle": "rollup -c rollup.bundle.config.js",
|
13 |
| - "build:dev": "run-p build:rollup build:types", |
| 13 | + "build:dev": "run-p build:transpile build:types", |
14 | 14 | "build:types": "tsc -p tsconfig.types.json",
|
15 |
| - "build:watch": "run-p build:rollup:watch build:bundle:watch build:types:watch", |
16 |
| - "build:dev:watch": "run-p build:rollup:watch build:types:watch", |
17 |
| - "build:rollup:watch": "yarn build:core --watch", |
| 15 | + "build:watch": "run-p build:transpile:watch build:bundle:watch build:types:watch", |
| 16 | + "build:dev:watch": "run-p build:transpile:watch build:types:watch", |
| 17 | + "build:transpile:watch": "yarn build:transpile --watch", |
18 | 18 | "build:bundle:watch": "yarn build:bundle --watch",
|
19 | 19 | "build:types:watch": "tsc -p tsconfig.types.json --watch",
|
20 | 20 | "build:tarball": "ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm",
|
|
0 commit comments