|
26 | 26 | "clean": "lerna run clean",
|
27 | 27 | "lint": "lerna run lint",
|
28 | 28 | "dep-check": "lerna run dep-check",
|
29 |
| - "configure-examples": "run-s release:pre:add-examples release:pre:add-hoisted-modules release:pre:reinstall && npm run build -- --scope={ipfs-core,ipfs,ipfs-http-client,ipfs-message-port-*}", |
| 29 | + "configure-examples": "run-s configure-examples:* release:pre:reinstall release:pre:build", |
| 30 | + "configure-examples:pre:add-examples": "json -I -f ./lerna.json -e \"this.packages.push('examples/*'); this.packages = [...new Set(this.packages)]\"", |
| 31 | + "configure-examples:add-hoisted-modules": "json -I -f ./lerna.json -e \"this.command.bootstrap.nohoist = ['ipfs-css', 'tachyons']; this.command.bootstrap.nohoist = [...new Set(this.command.bootstrap.nohoist)]\"", |
30 | 32 | "release": "run-s release:pre:* release:publish docker:release release:post:*",
|
31 | 33 | "release:pre:non-dirty-repo": "git diff --quiet",
|
32 | 34 | "release:pre:update-contributors": "aegir release --lint=false --test=false --bump=false --build=false --changelog=false --commit=false --tag=false --push=false --ghrelease=false --docs=false --publish=false",
|
33 |
| - "release:pre:ignore-changes-to-lerna-config": "git update-index --assume-unchanged ./lerna.json", |
34 |
| - "release:pre:build": "NODE_ENV=production npm run build -- --scope={ipfs-core,ipfs,ipfs-http-client,ipfs-message-port-*}", |
35 |
| - "release:pre:add-examples": "json -I -f ./lerna.json -e \"this.packages.push('examples/*'); this.packages = [...new Set(this.packages)]\"", |
36 |
| - "release:pre:add-hoisted-modules": "json -I -f ./lerna.json -e \"this.command.bootstrap.nohoist = ['ipfs-css', 'tachyons']; this.command.bootstrap.nohoist = [...new Set(this.command.bootstrap.nohoist)]\"", |
37 |
| - "release:pre:reinstall": "rimraf node_modules */*/node_modules package-lock.json */*/package-lock.json && npm i && rimraf package-lock.json */*/package-lock.json", |
| 35 | + "release:pre:reinstall": "npm run reset && npm i", |
| 36 | + "release:pre:build": "NODE_ENV=production npm run build -- --scope={ipfs,ipfs-core,ipfs-*client,ipfs-message-port-*}", |
38 | 37 | "release:publish": "lerna publish",
|
39 | 38 | "docker:release": "run-s docker:release:*",
|
40 | 39 | "docker:release:build": "docker build . --no-cache --tag js-ipfs:latest --file ./Dockerfile.latest",
|
|
0 commit comments