Skip to content

Commit cfd91d6

Browse files
chore: release v0.0.2-rc4 (packaging and build fixes)
1 parent 2c26e79 commit cfd91d6

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

.opencode/quotas.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"$schema": "../schemas/quotas.schema.json",
3-
"debug": true,
4-
"showUnaggregated": true
5-
}
2+
"$schema": "../schemas/quotas.schema.json",
3+
"debug": true
4+
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
## [0.0.2] - 2026-01-19
1717

18+
### rc4 Improvements
19+
20+
- **Packaging Fix**: Added `schemas/` directory to npm package, which is required for configuration validation.
21+
- **Build Fix**: Resolved issue where build artifacts were sometimes nested in `dist/src` due to stray files in the project root.
22+
- **Clean Build**: Updated build script to automatically clear `dist/` before each build to ensure no stale files remain.
23+
1824
### rc3 Improvements
1925

2026
- **Release Candidate 3**: Version bump for final testing before stable 0.0.2 release.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencode-quotas",
3-
"version": "0.0.2-rc3",
3+
"version": "0.0.2-rc4",
44
"description": "Opencode quota hub plugin for Antigravity and Codex",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -18,13 +18,14 @@
1818
"files": [
1919
"dist",
2020
"src",
21+
"schemas",
2122
"README.md",
2223
"LICENSE"
2324
],
2425
"scripts": {
2526
"opencode-quotas": "bun src/cli.ts",
26-
"build": "tsc -p tsconfig.build.json",
27-
"typecheck": "tsc --noEmit"
27+
"build": "rm -rf dist && tsc -p tsconfig.build.json",
28+
"typecheck": "tsc --noEmit"
2829
},
2930
"engines": {
3031
"node": ">=20"

0 commit comments

Comments
 (0)