|
9 | 9 | "test": "jest --watch", |
10 | 10 | "test:ci": "NODE_ENV=production jest --silent", |
11 | 11 | "start": "cross-env NODE_ENV=development webpack-dev-server --host 0.0.0.0 --port 8000 --config ./examples/typescript/webpack.config.js --history-api-fallback --content-base examples/typescript", |
12 | | - "build": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && cross-env NODE_ENV=production webpack && npm run fixmaps", |
13 | | - "release": "release", |
14 | | - "fixmaps": "modify_sourcemap_paths", |
15 | 12 | "clean": "shx rm -rf _bundles lib lib-esm build", |
| 13 | + "compile": "npm run clean && tsc && tsc -m es6 --outDir lib-esm", |
| 14 | + "bundle": "cross-env NODE_ENV=production webpack", |
| 15 | + "build": "run-s compile bundle fixmaps:*", |
| 16 | + "release": "release --deps @uirouter/core", |
| 17 | + "fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-esm/**/*.js.map'", |
| 18 | + "fixmaps:bundle": "tweak_sourcemap_paths -a --include '_bundles/**/*.js.map'", |
16 | 19 | "docs": "./scripts/docs.js", |
17 | | - "package": "npm run build", |
18 | 20 | "prepublishOnly": "npm run build", |
19 | 21 | "artifacts": "artifact_tagging", |
20 | | - "changelog": "update_changelog --include-core", |
21 | 22 | "prettier": "node ./scripts/prettier.js write-changed", |
22 | 23 | "prettier-all": "node ./scripts/prettier.js write" |
23 | 24 | }, |
|
0 commit comments