agim-cli 1.2.82 → 1.2.83
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/CHANGELOG.md +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [1.2.83] - 2026-05-26
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **Belt-and-suspenders**: drop `tsc --noEmit` from web-app's `build`
|
|
12
|
+
script. v1.2.82 added a tsconfig exclude for `*.test.tsx`, but the
|
|
13
|
+
user's CI run kept showing the same TS2305 errors — turning off
|
|
14
|
+
tsc entirely from the production build path guarantees the test-
|
|
15
|
+
type-drift can never block a release again. Type-checking still
|
|
16
|
+
happens via `npm run typecheck` and the `vitest` test runner.
|
|
17
|
+
Vite itself does enough at-bundle-time validation to catch syntax
|
|
18
|
+
+ import errors.
|
|
19
|
+
|
|
7
20
|
## [1.2.82] - 2026-05-26
|
|
8
21
|
|
|
9
22
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agim-cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.83",
|
|
4
4
|
"description": "Agim (阿吉姆) — universal messenger-to-agent bridge. Connect WeChat / Feishu / DingTalk / Email to Claude Code / Codex / OpenCode, or any custom agent via ACP. Installs the `agim` command.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|