Skip to content

Commit 3fb0c86

Browse files
committed
Fix JSX compilation error in CLI entry point ("React is not defined")
1 parent 267c3fc commit 3fb0c86

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.1] - 2026-01-02
11+
12+
### Fixed
13+
14+
- JSX compilation error in CLI entry point ("React is not defined")
15+
1016
## [0.5.0] - 2026-01-02
1117

1218
### Added
@@ -69,7 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6975
- Standalone binary builds for macOS (arm64 and x64)
7076
- npm package distribution
7177

72-
[Unreleased]: https://github.com/AgentWorkforce/limit/compare/v0.5.0...HEAD
78+
[Unreleased]: https://github.com/AgentWorkforce/limit/compare/v0.5.1...HEAD
79+
[0.5.1]: https://github.com/AgentWorkforce/limit/compare/v0.5.0...v0.5.1
7380
[0.5.0]: https://github.com/AgentWorkforce/limit/compare/v0.4.1...v0.5.0
7481
[0.4.1]: https://github.com/AgentWorkforce/limit/compare/v0.4.0...v0.4.1
7582
[0.4.0]: https://github.com/AgentWorkforce/limit/compare/v0.3.0...v0.4.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-limit",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Terminal dashboard to monitor Claude Code, Codex, and other agent usage limits",
55
"type": "module",
66
"main": "src/index.tsx",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"@/*": ["src/*"]
2020
}
2121
},
22-
"include": ["src/**/*"],
22+
"include": ["src/**/*", "bin/**/*"],
2323
"exclude": ["node_modules"]
2424
}

0 commit comments

Comments
 (0)