Skip to content

Commit 367f912

Browse files
authored
chore: remove lerna (#171)
Now that aegir has run and exec commands lerna isn't required
1 parent f11b093 commit 367f912

File tree

11 files changed

+39
-53
lines changed

11 files changed

+39
-53
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
44
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
55
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
6-
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-daemon/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml)
6+
[![CI](https://img.shields.io/github/actions/workflow/status/libp2p/js-libp2p-daemon/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
77

88
> Standalone libp2p executable
99
1010
## Table of contents <!-- omit in toc -->
1111

1212
- [Structure](#structure)
1313
- [License](#license)
14-
- [Contribute](#contribute)
14+
- [Contribution](#contribution)
1515

1616
## Structure
1717

@@ -27,6 +27,6 @@ Licensed under either of
2727
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
2828
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
2929

30-
## Contribute
30+
## Contribution
3131

3232
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

lerna.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,24 @@
2121
},
2222
"private": true,
2323
"scripts": {
24-
"reset": "lerna run clean && rimraf ./node_modules ./package-lock.json packages/*/node_modules packages/*/package-lock.json packages/*/dist",
25-
"test": "lerna run --concurrency 1 test -- --",
26-
"test:node": "lerna run --concurrency 1 test:node -- --",
27-
"test:chrome": "lerna run --concurrency 1 test:chrome -- --",
28-
"test:chrome-webworker": "lerna --concurrency 1 run test:chrome-webworker -- --",
29-
"test:firefox": "lerna run --concurrency 1 test:firefox -- --",
30-
"test:firefox-webworker": "lerna run --concurrency 1 test:firefox-webworker -- --",
31-
"test:electron-main": "lerna run --concurrency 1 test:electron-main -- --",
32-
"test:electron-renderer": "lerna run --concurrency 1 test:electron-renderer -- --",
33-
"generate": "lerna run generate",
34-
"build": "lerna run build",
35-
"lint": "lerna run lint",
36-
"clean": "lerna run clean",
37-
"dep-check": "lerna run dep-check",
38-
"release": "lerna run --concurrency 1 release -- --"
24+
"reset": "aegir run clean && aegir clean ./node_modules ./package-lock.json packages/*/node_modules packages/*/package-lock.json packages/*/dist",
25+
"test": "aegir run test",
26+
"test:node": "aegir run test:node",
27+
"test:chrome": "aegir run test:chrome",
28+
"test:chrome-webworker": "aegir run test:chrome-webworker",
29+
"test:firefox": "aegir run test:firefox",
30+
"test:firefox-webworker": "aegir run test:firefox-webworker",
31+
"test:electron-main": "aegir run test:electron-main",
32+
"test:electron-renderer": "aegir run test:electron-renderer",
33+
"generate": "aegir run generate",
34+
"build": "aegir run build",
35+
"lint": "aegir run lint",
36+
"clean": "aegir run clean",
37+
"dep-check": "aegir run dep-check",
38+
"release": "aegir run release"
3939
},
4040
"dependencies": {
41-
"lerna": "^6.0.0",
42-
"rimraf": "^3.0.2"
41+
"aegir": "^37.9.1"
4342
},
4443
"workspaces": [
4544
"packages/*"

packages/libp2p-daemon-client/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
44
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
55
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
6-
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-daemon/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml)
6+
[![CI](https://img.shields.io/github/actions/workflow/status/libp2p/js-libp2p-daemon/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
77

88
> libp2p-daemon client implementation
99
@@ -16,7 +16,7 @@
1616
- [Interact with the daemon process using the client](#interact-with-the-daemon-process-using-the-client)
1717
- [API](#api)
1818
- [License](#license)
19-
- [Contribute](#contribute)
19+
- [Contribution](#contribution)
2020

2121
## Install
2222

@@ -82,6 +82,6 @@ Licensed under either of
8282
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
8383
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
8484

85-
## Contribute
85+
## Contribution
8686

8787
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/libp2p-daemon-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"types": "./dist/src/index.d.ts",
2323
"files": [
2424
"src",
25-
"dist/src",
25+
"dist",
2626
"!dist/test",
2727
"!**/*.tsbuildinfo"
2828
],
@@ -155,7 +155,7 @@
155155
"@libp2p/interface-peer-store": "^1.0.0",
156156
"@libp2p/interface-pubsub": "^3.0.0",
157157
"@libp2p/peer-id-factory": "^2.0.0",
158-
"aegir": "^37.2.0",
158+
"aegir": "^37.9.1",
159159
"it-all": "^2.0.0",
160160
"it-pipe": "^2.0.3",
161161
"sinon": "^14.0.0",

packages/libp2p-daemon-protocol/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
44
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
55
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
6-
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-daemon/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml)
6+
[![CI](https://img.shields.io/github/actions/workflow/status/libp2p/js-libp2p-daemon/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
77

88
> Communication protocol between libp2p daemons and clients
99
1010
## Table of contents <!-- omit in toc -->
1111

1212
- [Install](#install)
1313
- [License](#license)
14-
- [Contribute](#contribute)
14+
- [Contribution](#contribution)
1515

1616
## Install
1717

@@ -26,6 +26,6 @@ Licensed under either of
2626
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
2727
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
2828

29-
## Contribute
29+
## Contribution
3030

3131
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/libp2p-daemon-protocol/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
"files": [
3838
"src",
39-
"dist/src",
39+
"dist",
4040
"!dist/test",
4141
"!**/*.tsbuildinfo"
4242
],
@@ -163,7 +163,7 @@
163163
"uint8arraylist": "^2.3.2"
164164
},
165165
"devDependencies": {
166-
"aegir": "^37.2.0",
166+
"aegir": "^37.9.1",
167167
"protons": "^6.0.0"
168168
}
169169
}

packages/libp2p-daemon-server/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
44
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
55
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
6-
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-daemon/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml)
6+
[![CI](https://img.shields.io/github/actions/workflow/status/libp2p/js-libp2p-daemon/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
77

88
> API server for libp2p-daemon instances
99
@@ -13,7 +13,7 @@
1313
- [Specs](#specs)
1414
- [Usage](#usage)
1515
- [License](#license)
16-
- [Contribute](#contribute)
16+
- [Contribution](#contribution)
1717

1818
## Install
1919

@@ -49,6 +49,6 @@ Licensed under either of
4949
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
5050
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
5151

52-
## Contribute
52+
## Contribution
5353

5454
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

packages/libp2p-daemon-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"types": "./dist/src/index.d.ts",
2323
"files": [
2424
"src",
25-
"dist/src",
25+
"dist",
2626
"!dist/test",
2727
"!**/*.tsbuildinfo"
2828
],
@@ -157,7 +157,7 @@
157157
"uint8arrays": "^4.0.2"
158158
},
159159
"devDependencies": {
160-
"aegir": "^37.2.0",
160+
"aegir": "^37.9.1",
161161
"sinon": "^14.0.0",
162162
"sinon-ts": "^1.0.0"
163163
}

packages/libp2p-daemon/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
44
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
55
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
6-
[![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-daemon/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml)
6+
[![CI](https://img.shields.io/github/actions/workflow/status/libp2p/js-libp2p-daemon/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/libp2p/js-libp2p-daemon/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
77

88
> libp2p-daemon JavaScript implementation
99
@@ -13,7 +13,7 @@
1313
- [Specs](#specs)
1414
- [Usage](#usage)
1515
- [License](#license)
16-
- [Contribute](#contribute)
16+
- [Contribution](#contribution)
1717

1818
## Install
1919

@@ -48,6 +48,6 @@ Licensed under either of
4848
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
4949
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
5050

51-
## Contribute
51+
## Contribution
5252

5353
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

0 commit comments

Comments
 (0)