diff --git a/README.md b/README.md index 3ec2f0f7..23e27d60 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/) [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io) [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon) -[![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) +[![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) > Standalone libp2p executable @@ -11,7 +11,7 @@ - [Structure](#structure) - [License](#license) -- [Contribute](#contribute) +- [Contribution](#contribution) ## Structure @@ -27,6 +27,6 @@ Licensed under either of - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / ) - MIT ([LICENSE-MIT](LICENSE-MIT) / ) -## Contribute +## Contribution 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. diff --git a/lerna.json b/lerna.json deleted file mode 100644 index fe9f1a3a..00000000 --- a/lerna.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "lerna": "5.4.0", - "useWorkspaces": true, - "version": "independent", - "command": { - "run": { - "stream": true - } - }, - "packages": [ - "packages/*" - ] -} diff --git a/package.json b/package.json index 5bd271cf..af1462cc 100644 --- a/package.json +++ b/package.json @@ -21,25 +21,24 @@ }, "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 -- --", - "generate": "lerna run generate", - "build": "lerna run build", - "lint": "lerna run lint", - "clean": "lerna run clean", - "dep-check": "lerna run dep-check", - "release": "lerna run --concurrency 1 release -- --" + "reset": "aegir run clean && aegir clean ./node_modules ./package-lock.json packages/*/node_modules packages/*/package-lock.json packages/*/dist", + "test": "aegir run test", + "test:node": "aegir run test:node", + "test:chrome": "aegir run test:chrome", + "test:chrome-webworker": "aegir run test:chrome-webworker", + "test:firefox": "aegir run test:firefox", + "test:firefox-webworker": "aegir run test:firefox-webworker", + "test:electron-main": "aegir run test:electron-main", + "test:electron-renderer": "aegir run test:electron-renderer", + "generate": "aegir run generate", + "build": "aegir run build", + "lint": "aegir run lint", + "clean": "aegir run clean", + "dep-check": "aegir run dep-check", + "release": "aegir run release" }, "dependencies": { - "lerna": "^6.0.0", - "rimraf": "^3.0.2" + "aegir": "^37.9.1" }, "workspaces": [ "packages/*" diff --git a/packages/libp2p-daemon-client/README.md b/packages/libp2p-daemon-client/README.md index aac966e2..1ef856fa 100644 --- a/packages/libp2p-daemon-client/README.md +++ b/packages/libp2p-daemon-client/README.md @@ -3,7 +3,7 @@ [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/) [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io) [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon) -[![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) +[![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) > libp2p-daemon client implementation @@ -16,7 +16,7 @@ - [Interact with the daemon process using the client](#interact-with-the-daemon-process-using-the-client) - [API](#api) - [License](#license) -- [Contribute](#contribute) +- [Contribution](#contribution) ## Install @@ -82,6 +82,6 @@ Licensed under either of - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / ) - MIT ([LICENSE-MIT](LICENSE-MIT) / ) -## Contribute +## Contribution 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. diff --git a/packages/libp2p-daemon-client/package.json b/packages/libp2p-daemon-client/package.json index 3955586e..096e2ae1 100644 --- a/packages/libp2p-daemon-client/package.json +++ b/packages/libp2p-daemon-client/package.json @@ -22,7 +22,7 @@ "types": "./dist/src/index.d.ts", "files": [ "src", - "dist/src", + "dist", "!dist/test", "!**/*.tsbuildinfo" ], @@ -155,7 +155,7 @@ "@libp2p/interface-peer-store": "^1.0.0", "@libp2p/interface-pubsub": "^3.0.0", "@libp2p/peer-id-factory": "^2.0.0", - "aegir": "^37.2.0", + "aegir": "^37.9.1", "it-all": "^2.0.0", "it-pipe": "^2.0.3", "sinon": "^14.0.0", diff --git a/packages/libp2p-daemon-protocol/README.md b/packages/libp2p-daemon-protocol/README.md index 4efc24d3..60270fd1 100644 --- a/packages/libp2p-daemon-protocol/README.md +++ b/packages/libp2p-daemon-protocol/README.md @@ -3,7 +3,7 @@ [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/) [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io) [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon) -[![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) +[![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) > Communication protocol between libp2p daemons and clients @@ -11,7 +11,7 @@ - [Install](#install) - [License](#license) -- [Contribute](#contribute) +- [Contribution](#contribution) ## Install @@ -26,6 +26,6 @@ Licensed under either of - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / ) - MIT ([LICENSE-MIT](LICENSE-MIT) / ) -## Contribute +## Contribution 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. diff --git a/packages/libp2p-daemon-protocol/package.json b/packages/libp2p-daemon-protocol/package.json index 940bd266..b590ef93 100644 --- a/packages/libp2p-daemon-protocol/package.json +++ b/packages/libp2p-daemon-protocol/package.json @@ -36,7 +36,7 @@ }, "files": [ "src", - "dist/src", + "dist", "!dist/test", "!**/*.tsbuildinfo" ], @@ -163,7 +163,7 @@ "uint8arraylist": "^2.3.2" }, "devDependencies": { - "aegir": "^37.2.0", + "aegir": "^37.9.1", "protons": "^6.0.0" } } diff --git a/packages/libp2p-daemon-server/README.md b/packages/libp2p-daemon-server/README.md index 22679b62..a430700d 100644 --- a/packages/libp2p-daemon-server/README.md +++ b/packages/libp2p-daemon-server/README.md @@ -3,7 +3,7 @@ [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/) [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io) [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon) -[![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) +[![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) > API server for libp2p-daemon instances @@ -13,7 +13,7 @@ - [Specs](#specs) - [Usage](#usage) - [License](#license) -- [Contribute](#contribute) +- [Contribution](#contribution) ## Install @@ -49,6 +49,6 @@ Licensed under either of - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / ) - MIT ([LICENSE-MIT](LICENSE-MIT) / ) -## Contribute +## Contribution 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. diff --git a/packages/libp2p-daemon-server/package.json b/packages/libp2p-daemon-server/package.json index a39579eb..e107007b 100644 --- a/packages/libp2p-daemon-server/package.json +++ b/packages/libp2p-daemon-server/package.json @@ -22,7 +22,7 @@ "types": "./dist/src/index.d.ts", "files": [ "src", - "dist/src", + "dist", "!dist/test", "!**/*.tsbuildinfo" ], @@ -157,7 +157,7 @@ "uint8arrays": "^4.0.2" }, "devDependencies": { - "aegir": "^37.2.0", + "aegir": "^37.9.1", "sinon": "^14.0.0", "sinon-ts": "^1.0.0" } diff --git a/packages/libp2p-daemon/README.md b/packages/libp2p-daemon/README.md index db24c0a3..e912506a 100644 --- a/packages/libp2p-daemon/README.md +++ b/packages/libp2p-daemon/README.md @@ -3,7 +3,7 @@ [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/) [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io) [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon) -[![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) +[![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) > libp2p-daemon JavaScript implementation @@ -13,7 +13,7 @@ - [Specs](#specs) - [Usage](#usage) - [License](#license) -- [Contribute](#contribute) +- [Contribution](#contribution) ## Install @@ -48,6 +48,6 @@ Licensed under either of - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / ) - MIT ([LICENSE-MIT](LICENSE-MIT) / ) -## Contribute +## Contribution 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. diff --git a/packages/libp2p-daemon/package.json b/packages/libp2p-daemon/package.json index 9d20e344..7629cde8 100644 --- a/packages/libp2p-daemon/package.json +++ b/packages/libp2p-daemon/package.json @@ -25,7 +25,7 @@ "types": "./dist/src/index.d.ts", "files": [ "src", - "dist/src", + "dist", "!dist/test", "!**/*.tsbuildinfo" ], @@ -143,7 +143,7 @@ "yargs-promise": "^1.1.0" }, "devDependencies": { - "aegir": "^37.2.0", + "aegir": "^37.9.1", "sinon": "^14.0.0" } }