Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix release script #404

Merged
merged 2 commits into from
Aug 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@
},
"private": true,
"scripts": {
"reset": "lerna run clean && rimraf packages/*/node_modules node_modules packages/*/package-lock.json package-lock.json",
"test": "lerna run test",
"coverage": "lerna run coverage",
"prepare": "lerna run prepare",
"build": "lerna run build",
"reset": "lerna run clean && rimraf ./node_modules ./package-lock.json packages/*/node_modules packages/*/package-lock.json packages/*/dist",
"test": "lerna run --concurrency 1 test -- --",
"test:node": "lerna run --concurrency 1 test:node -- --",
"test:chrome": "lerna run --concurrency 1 test:chrome -- --",
"test:chrome-webworker": "lerna --concurrency 1 run test:chrome-webworker -- --",
"test:firefox": "lerna run --concurrency 1 test:firefox -- --",
"test:firefox-webworker": "lerna run --concurrency 1 test:firefox-webworker -- --",
"test:electron-main": "lerna run --concurrency 1 test:electron-main -- --",
"test:electron-renderer": "lerna run --concurrency 1 test:electron-renderer -- --",
"clean": "lerna run clean",
"build": "lerna run build",
"lint": "lerna run lint",
"dep-check": "lerna run dep-check",
"release": "npm run update-contributors && lerna run build && lerna publish",
"release:rc": "lerna run build && lerna publish --canary --preid rc --dist-tag next",
"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"
"release": "lerna run --concurrency 1 release -- --"
},
"devDependencies": {
"lerna": "^5.0.0",
Expand Down
1 change: 0 additions & 1 deletion packages/ipfs-repo-migrations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node --cov",
"test:chrome": "aegir test -t browser --cov",
"lint": "aegir lint",
"release": "aegir release",
"dep-check": "aegir dep-check -i interface-blockstore -i npm-run-all"
Expand Down
1 change: 0 additions & 1 deletion packages/ipfs-repo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@
"release": "aegir release",
"test": "aegir test",
"test:node": "aegir test -t node --cov",
"test:chrome": "aegir test -t browser --cov",
"dep-check": "aegir dep-check -i interface-blockstore"
},
"dependencies": {
Expand Down