Skip to content

Commit 4cf3a98

Browse files
committed
fix: update project config
1 parent 0643ac9 commit 4cf3a98

File tree

10 files changed

+394
-129
lines changed

10 files changed

+394
-129
lines changed

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# js-libp2p-daemon
2+
13
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
24
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
35
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
@@ -7,10 +9,10 @@
79
810
# Packages
911

10-
- [`/packages/libp2p-daemon`](./packages/libp2p-daemon) libp2p-daemon JavaScript implementation
11-
- [`/packages/libp2p-daemon-client`](./packages/libp2p-daemon-client) libp2p-daemon client implementation
12-
- [`/packages/libp2p-daemon-protocol`](./packages/libp2p-daemon-protocol) Communication protocol between libp2p daemons and clients
13-
- [`/packages/libp2p-daemon-server`](./packages/libp2p-daemon-server) API server for libp2p-daemon instances
12+
- [`packages/libp2p-daemon`](https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon) libp2p-daemon JavaScript implementation
13+
- [`packages/libp2p-daemon-client`](https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon-client) libp2p-daemon client implementation
14+
- [`packages/libp2p-daemon-protocol`](https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon-protocol) Communication protocol between libp2p daemons and clients
15+
- [`packages/libp2p-daemon-server`](https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon-server) API server for libp2p-daemon instances
1416

1517
# API Docs
1618

@@ -20,8 +22,8 @@
2022

2123
Licensed under either of
2224

23-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
24-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
25+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/libp2p/js-libp2p-daemon/blob/main/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
26+
- MIT ([LICENSE-MIT](https://github.com/libp2p/js-libp2p-daemon/blob/main/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
2527

2628
# Contribution
2729

package.json

-85
Original file line numberDiff line numberDiff line change
@@ -16,91 +16,6 @@
1616
"libp2p"
1717
],
1818
"private": true,
19-
"release": {
20-
"branches": [
21-
"main"
22-
],
23-
"plugins": [
24-
[
25-
"@semantic-release/commit-analyzer",
26-
{
27-
"preset": "conventionalcommits",
28-
"releaseRules": [
29-
{
30-
"breaking": true,
31-
"release": "major"
32-
},
33-
{
34-
"revert": true,
35-
"release": "patch"
36-
},
37-
{
38-
"type": "feat",
39-
"release": "minor"
40-
},
41-
{
42-
"type": "fix",
43-
"release": "patch"
44-
},
45-
{
46-
"type": "docs",
47-
"release": "patch"
48-
},
49-
{
50-
"type": "test",
51-
"release": "patch"
52-
},
53-
{
54-
"type": "deps",
55-
"release": "patch"
56-
},
57-
{
58-
"scope": "no-release",
59-
"release": false
60-
}
61-
]
62-
}
63-
],
64-
[
65-
"@semantic-release/release-notes-generator",
66-
{
67-
"preset": "conventionalcommits",
68-
"presetConfig": {
69-
"types": [
70-
{
71-
"type": "feat",
72-
"section": "Features"
73-
},
74-
{
75-
"type": "fix",
76-
"section": "Bug Fixes"
77-
},
78-
{
79-
"type": "chore",
80-
"section": "Trivial Changes"
81-
},
82-
{
83-
"type": "docs",
84-
"section": "Documentation"
85-
},
86-
{
87-
"type": "deps",
88-
"section": "Dependencies"
89-
},
90-
{
91-
"type": "test",
92-
"section": "Tests"
93-
}
94-
]
95-
}
96-
}
97-
],
98-
"@semantic-release/changelog",
99-
"@semantic-release/npm",
100-
"@semantic-release/github",
101-
"@semantic-release/git"
102-
]
103-
},
10419
"scripts": {
10520
"reset": "aegir run clean && aegir clean **/node_modules **/package-lock.json",
10621
"test": "aegir run test",

packages/libp2p-daemon-client/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# @libp2p/daemon-client
2+
13
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
24
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
35
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
@@ -53,8 +55,8 @@ await client.close()
5355

5456
Licensed under either of
5557

56-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
57-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
58+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-client/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
59+
- MIT ([LICENSE-MIT](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-client/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
5860

5961
# Contribution
6062

packages/libp2p-daemon-client/package.json

+96-11
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,91 @@
3939
"sourceType": "module"
4040
}
4141
},
42+
"release": {
43+
"branches": [
44+
"main"
45+
],
46+
"plugins": [
47+
[
48+
"@semantic-release/commit-analyzer",
49+
{
50+
"preset": "conventionalcommits",
51+
"releaseRules": [
52+
{
53+
"breaking": true,
54+
"release": "major"
55+
},
56+
{
57+
"revert": true,
58+
"release": "patch"
59+
},
60+
{
61+
"type": "feat",
62+
"release": "minor"
63+
},
64+
{
65+
"type": "fix",
66+
"release": "patch"
67+
},
68+
{
69+
"type": "docs",
70+
"release": "patch"
71+
},
72+
{
73+
"type": "test",
74+
"release": "patch"
75+
},
76+
{
77+
"type": "deps",
78+
"release": "patch"
79+
},
80+
{
81+
"scope": "no-release",
82+
"release": false
83+
}
84+
]
85+
}
86+
],
87+
[
88+
"@semantic-release/release-notes-generator",
89+
{
90+
"preset": "conventionalcommits",
91+
"presetConfig": {
92+
"types": [
93+
{
94+
"type": "feat",
95+
"section": "Features"
96+
},
97+
{
98+
"type": "fix",
99+
"section": "Bug Fixes"
100+
},
101+
{
102+
"type": "chore",
103+
"section": "Trivial Changes"
104+
},
105+
{
106+
"type": "docs",
107+
"section": "Documentation"
108+
},
109+
{
110+
"type": "deps",
111+
"section": "Dependencies"
112+
},
113+
{
114+
"type": "test",
115+
"section": "Tests"
116+
}
117+
]
118+
}
119+
}
120+
],
121+
"@semantic-release/changelog",
122+
"@semantic-release/npm",
123+
"@semantic-release/github",
124+
"@semantic-release/git"
125+
]
126+
},
42127
"scripts": {
43128
"clean": "aegir clean",
44129
"lint": "aegir lint",
@@ -51,25 +136,25 @@
51136
},
52137
"dependencies": {
53138
"@libp2p/daemon-protocol": "^6.0.0",
54-
"@libp2p/interface": "^2.0.0",
55-
"@libp2p/logger": "^5.0.0",
56-
"@libp2p/peer-id": "^5.0.0",
57-
"@libp2p/tcp": "^10.0.0",
58-
"@multiformats/multiaddr": "^12.1.14",
59-
"it-protobuf-stream": "^1.1.2",
60-
"multiformats": "^13.0.1"
139+
"@libp2p/interface": "^2.2.0",
140+
"@libp2p/logger": "^5.1.3",
141+
"@libp2p/peer-id": "^5.0.7",
142+
"@libp2p/tcp": "^10.0.11",
143+
"@multiformats/multiaddr": "^12.3.1",
144+
"it-protobuf-stream": "^1.1.5",
145+
"multiformats": "^13.3.1"
61146
},
62147
"devDependencies": {
63-
"@chainsafe/libp2p-gossipsub": "^14.0.0",
148+
"@chainsafe/libp2p-gossipsub": "^14.1.0",
64149
"@libp2p/daemon-server": "^7.0.0",
65-
"@libp2p/interface-compliance-tests": "^6.0.0",
150+
"@libp2p/interface-compliance-tests": "^6.1.8",
66151
"@libp2p/kad-dht": "^14.1.0",
67152
"aegir": "^45.0.1",
68-
"it-all": "^3.0.4",
153+
"it-all": "^3.0.6",
69154
"it-pipe": "^3.0.1",
70155
"sinon": "^19.0.2",
71156
"sinon-ts": "^2.0.0",
72157
"uint8arraylist": "^2.4.8",
73-
"uint8arrays": "^5.0.1"
158+
"uint8arrays": "^5.1.0"
74159
}
75160
}

packages/libp2p-daemon-protocol/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# @libp2p/daemon-protocol
2+
13
[![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
24
[![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
35
[![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
@@ -19,8 +21,8 @@ $ npm i @libp2p/daemon-protocol
1921

2022
Licensed under either of
2123

22-
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
23-
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
24+
- Apache 2.0, ([LICENSE-APACHE](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-protocol/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
25+
- MIT ([LICENSE-MIT](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-protocol/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
2426

2527
# Contribution
2628

packages/libp2p-daemon-protocol/package.json

+90-5
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,91 @@
6161
"sourceType": "module"
6262
}
6363
},
64+
"release": {
65+
"branches": [
66+
"main"
67+
],
68+
"plugins": [
69+
[
70+
"@semantic-release/commit-analyzer",
71+
{
72+
"preset": "conventionalcommits",
73+
"releaseRules": [
74+
{
75+
"breaking": true,
76+
"release": "major"
77+
},
78+
{
79+
"revert": true,
80+
"release": "patch"
81+
},
82+
{
83+
"type": "feat",
84+
"release": "minor"
85+
},
86+
{
87+
"type": "fix",
88+
"release": "patch"
89+
},
90+
{
91+
"type": "docs",
92+
"release": "patch"
93+
},
94+
{
95+
"type": "test",
96+
"release": "patch"
97+
},
98+
{
99+
"type": "deps",
100+
"release": "patch"
101+
},
102+
{
103+
"scope": "no-release",
104+
"release": false
105+
}
106+
]
107+
}
108+
],
109+
[
110+
"@semantic-release/release-notes-generator",
111+
{
112+
"preset": "conventionalcommits",
113+
"presetConfig": {
114+
"types": [
115+
{
116+
"type": "feat",
117+
"section": "Features"
118+
},
119+
{
120+
"type": "fix",
121+
"section": "Bug Fixes"
122+
},
123+
{
124+
"type": "chore",
125+
"section": "Trivial Changes"
126+
},
127+
{
128+
"type": "docs",
129+
"section": "Documentation"
130+
},
131+
{
132+
"type": "deps",
133+
"section": "Dependencies"
134+
},
135+
{
136+
"type": "test",
137+
"section": "Tests"
138+
}
139+
]
140+
}
141+
}
142+
],
143+
"@semantic-release/changelog",
144+
"@semantic-release/npm",
145+
"@semantic-release/github",
146+
"@semantic-release/git"
147+
]
148+
},
64149
"scripts": {
65150
"clean": "aegir clean",
66151
"lint": "aegir lint",
@@ -70,14 +155,14 @@
70155
"release": "aegir release"
71156
},
72157
"dependencies": {
73-
"@libp2p/interface": "^2.0.0",
74-
"@libp2p/logger": "^5.0.0",
75-
"it-length-prefixed-stream": "^1.1.6",
76-
"protons-runtime": "^5.4.0",
158+
"@libp2p/interface": "^2.2.0",
159+
"@libp2p/logger": "^5.1.3",
160+
"it-length-prefixed-stream": "^1.2.0",
161+
"protons-runtime": "^5.5.0",
77162
"uint8arraylist": "^2.4.8"
78163
},
79164
"devDependencies": {
80165
"aegir": "^45.0.1",
81-
"protons": "^7.5.0"
166+
"protons": "^7.6.0"
82167
}
83168
}

0 commit comments

Comments
 (0)