Skip to content

Commit 4dfd08b

Browse files
committed
chore: update lerna
1 parent 3fe2226 commit 4dfd08b

File tree

48 files changed

+12082
-37761
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+12082
-37761
lines changed

package-lock.json

Lines changed: 12065 additions & 8687 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,24 @@
1212
"prepare": "husky install",
1313
"commit-msg": "commitlint --config commitlint.config.cjs --edit",
1414
"pre-commit": "npm run test:lint",
15-
"install": "lerna bootstrap",
1615
"test": "npm run test:lint && npm run test:packages",
1716
"test:lint": "lint-staged",
1817
"test:lint:ci": "ts-standard",
1918
"test:unit": "cd packages/$PACKAGE && c8 npm run test:unit",
2019
"test:benchmark": "cd packages/$PACKAGE && npm run test:benchmark",
21-
"test:packages": "npm run test:packages:typings && npm run test:packages:unit",
22-
"test:packages:unit": "c8 lerna exec --bail --concurrency 5 npm run test:unit",
23-
"test:packages:benchmark": "lerna exec --bail --concurrency 1 npm run test:benchmark",
24-
"test:packages:typings": "lerna exec --bail --concurrency 5 tsd",
20+
"test:packages": "npm run test:packages:typings && npm run test:packages:unit --workspaces",
21+
"test:packages:unit": "c8 npm run test:unit --workspaces",
22+
"test:packages:benchmark": "npm run test:benchmark --workspaces",
23+
"test:packages:typings": "tsd --workspaces",
2524
"release:tag": "git tag $npm_package_version && git push --tags",
26-
"lerna:rm": "npm run lerna:rm:coverage && npm run lerna:rm:node_modules && npm run lerna:rm:lock",
27-
"lerna:rm:coverage": "lerna exec -- rm -rf coverage",
28-
"lerna:rm:lock": "lerna exec -- rm -rf package-lock.json",
29-
"lerna:rm:node_modules": "lerna exec -- rm -rf node_modules",
30-
"lerna:update": "lerna exec --bail --concurrency 5 npm update && npm install",
31-
"lerna:outdated": "lerna exec --concurrency 5 --no-bail npm outdated",
32-
"lerna:audit": "lerna exec --concurrency 2 npm audit fix",
33-
"lerna:fund": "lerna exec --concurrency 2 npm fund",
34-
"lerna:sync": "lerna exec --bail --concurrency 2 npm install && lerna publish --exact --yes --skip-npm --skip-git --repo-version $npm_package_version",
25+
"rm": "npm run lerna:rm:coverage && npm run lerna:rm:node_modules && npm run lerna:rm:lock",
26+
"rm:coverage": "rm -rf coverage --workspaces",
27+
"rm:lock": "rm -rf package-lock.json --workspaces",
28+
"rm:node_modules": "rm -rf node_modules --workspaces",
29+
"update": "npm update --workspaces && npm install --workspaces",
30+
"outdated": "npm outdated --workspaces",
31+
"audit": "npm audit fix --workspaces",
32+
"lerna:sync": "npm install && lerna publish --exact --yes --skip-npm --skip-git --repo-version $npm_package_version",
3533
"lerna:publish": "lerna publish --exact --yes --skip-git --repo-version $npm_package_version",
3634
"lerna:publish:next": "lerna publish --exact --yes --skip-git --repo-version $npm_package_version --dist-tag next"
3735
},
@@ -65,7 +63,7 @@
6563
"aws-sdk-client-mock": "^3.0.0",
6664
"c8": "^9.0.0",
6765
"husky": "^8.0.0",
68-
"lerna": "^6.0.0",
66+
"lerna": "^8.0.0",
6967
"lint-staged": "^15.0.0",
7068
"prettier": "^3.0.0",
7169
"sinon": "^17.0.0",
@@ -74,6 +72,9 @@
7472
"ts-standard": "^12.0.0",
7573
"tsd": "^0.30.0"
7674
},
75+
"workspaces": [
76+
"packages/*"
77+
],
7778
"ts-standard": {
7879
"ignore": [
7980
"website/build/**/*.js"

0 commit comments

Comments
 (0)