@buildinternet/releases 0.31.0 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -22
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -123,29 +123,9 @@ Nothing is required for reader access. For admin operations (closed beta — see
|
|
|
123
123
|
|
|
124
124
|
Copy `.env.example` to `.env` to configure these locally.
|
|
125
125
|
|
|
126
|
-
##
|
|
126
|
+
## Contributing
|
|
127
127
|
|
|
128
|
-
|
|
129
|
-
bun install
|
|
130
|
-
bun src/index.ts search "next" # run from source
|
|
131
|
-
bun run build # compile binary to dist/releases
|
|
132
|
-
bun run typecheck # tsc --noEmit
|
|
133
|
-
bun test # unit tests
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
The project is a Bun workspace. Two shared packages (`@buildinternet/releases-lib`, `@buildinternet/releases-skills`) are published from this repo alongside the CLI. `@buildinternet/releases-core` is published from the private monorepo and consumed here as a regular npm dependency.
|
|
137
|
-
|
|
138
|
-
### Releasing
|
|
139
|
-
|
|
140
|
-
Changesets handle versioning:
|
|
141
|
-
|
|
142
|
-
```bash
|
|
143
|
-
bun run changeset # write a bump entry for your PR
|
|
144
|
-
bun run changeset:version # apply pending bumps (runs in CI)
|
|
145
|
-
bun run changeset:publish # publish to npm (runs in CI)
|
|
146
|
-
```
|
|
147
|
-
|
|
148
|
-
Seven `@buildinternet/releases*` packages (5 binaries + `-lib` + `-skills`) live in a fixed group so they bump together. `@buildinternet/releases-core` is published independently from the monorepo.
|
|
128
|
+
Build, test, and release instructions live in [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
149
129
|
|
|
150
130
|
## Exit codes
|
|
151
131
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildinternet/releases",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"description": "Changelog indexer and registry for AI agents and developers",
|
|
5
5
|
"bin": {
|
|
6
6
|
"releases": "bin/releases"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@buildinternet/releases-darwin-arm64": "0.
|
|
17
|
-
"@buildinternet/releases-darwin-x64": "0.
|
|
18
|
-
"@buildinternet/releases-linux-x64": "0.
|
|
19
|
-
"@buildinternet/releases-linux-arm64": "0.
|
|
20
|
-
"@buildinternet/releases-windows-x64": "0.
|
|
16
|
+
"@buildinternet/releases-darwin-arm64": "0.32.0",
|
|
17
|
+
"@buildinternet/releases-darwin-x64": "0.32.0",
|
|
18
|
+
"@buildinternet/releases-linux-x64": "0.32.0",
|
|
19
|
+
"@buildinternet/releases-linux-arm64": "0.32.0",
|
|
20
|
+
"@buildinternet/releases-windows-x64": "0.32.0"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"changelog",
|