Skip to content

Commit

Permalink
chore: remove lerna (libp2p#43)
Browse files Browse the repository at this point in the history
Now that aegir has `run` and `exec` commands, lerna is no longer necessary.
  • Loading branch information
achingbrain authored Jan 6, 2023
1 parent 0e4cea1 commit d458051
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 29 deletions.
10 changes: 0 additions & 10 deletions lerna.json

This file was deleted.

33 changes: 16 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,26 @@
},
"private": true,
"scripts": {
"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",
"generate": "lerna run generate",
"build": "lerna run build",
"lint": "lerna run lint",
"reset": "aegir run clean && rimraf ./node_modules ./package-lock.json packages/*/node_modules packages/*/package-lock.json packages/*/dist",
"test": "aegir run --concurrency 1 test -- --",
"test:node": "aegir run --concurrency 1 test:node -- --",
"test:chrome": "aegir run --concurrency 1 test:chrome -- --",
"test:chrome-webworker": "aegir --concurrency 1 run test:chrome-webworker -- --",
"test:firefox": "aegir run --concurrency 1 test:firefox -- --",
"test:firefox-webworker": "aegir run --concurrency 1 test:firefox-webworker -- --",
"test:electron-main": "aegir run --concurrency 1 test:electron-main -- --",
"test:electron-renderer": "aegir run --concurrency 1 test:electron-renderer -- --",
"clean": "aegir run clean",
"generate": "aegir run generate",
"build": "aegir run build",
"lint": "aegir run lint",
"docs": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs",
"docs:no-publish": "npm run docs -- --publish false",
"dep-check": "lerna run dep-check",
"release": "npm run docs:no-publish && lerna run --concurrency 1 release && npm run docs"
"dep-check": "aegir run dep-check",
"release": "npm run docs:no-publish && aegir run release && npm run docs"
},
"dependencies": {
"aegir": "^37.7.5",
"lerna": "^5.0.0",
"aegir": "^37.9.0",
"rimraf": "^3.0.2"
},
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/libp2p-peer-id-factory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
"uint8arrays": "^4.0.2"
},
"devDependencies": {
"aegir": "^37.7.5",
"aegir": "^37.9.0",
"protons": "^6.0.0",
"util": "^0.12.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/libp2p-peer-id/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"uint8arrays": "^4.0.2"
},
"devDependencies": {
"aegir": "^37.7.5"
"aegir": "^37.9.0"
},
"typedoc": {
"entryPoint": "./src/index.ts"
Expand Down

0 comments on commit d458051

Please sign in to comment.