Skip to content

Commit 3000b41

Browse files
committed
build: Use pnpm instead of lerna for running tasks across the monorepo
1 parent 79abefa commit 3000b41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"packages/*"
55
],
66
"scripts": {
7-
"clean": "lerna run clean",
8-
"build": "lerna run build",
7+
"clean": "pnpm run -r clean",
8+
"build": "pnpm run -r build",
99
"version": "lerna version",
1010
"version:force": "pnpm run version --force-publish",
1111
"pub:git": "pnpm run build && lerna publish from-git && pnpm run clean",
1212
"pub:pkg": "pnpm run build && lerna publish from-package && pnpm run clean",
1313
"lint": "eslint --ext ts,tsx,js .",
14-
"test": "lerna run test",
14+
"test": "pnpm run -r test",
1515
"ts-node": "ts-node -O '{\"target\": \"es6\"}'",
1616
"selenium": "pnpm exec ts-node packages/selenium/src/bin/index.ts start --port 4444 --retries 30",
1717
"selenium:debug": "pnpm exec ts-node packages/selenium/src/bin/index.ts debug --port 3333",

0 commit comments

Comments
 (0)