@artemiskit/cli 0.1.7 → 0.1.8
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 +23 -0
- package/dist/index.js +2639 -4816
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/commands/init.d.ts.map +1 -1
- package/dist/src/utils/update-checker.d.ts +31 -0
- package/dist/src/utils/update-checker.d.ts.map +1 -0
- package/package.json +6 -6
- package/src/cli.ts +22 -1
- package/src/commands/init.ts +50 -10
- package/src/utils/update-checker.ts +121 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @artemiskit/cli
|
|
2
2
|
|
|
3
|
+
## 0.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 27d7645: ### Fixed
|
|
8
|
+
|
|
9
|
+
- Replaced `pino` logger with `consola` to fix Bun bundler compatibility issues. Some users experienced `ModuleNotFound: thread-stream/lib/worker.js` errors during installation due to pino's dynamic worker thread resolution that Bun's bundler cannot statically analyze.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Logger implementation now uses `consola` internally. The public `Logger` class API remains unchanged - no code changes required for consumers.
|
|
14
|
+
|
|
15
|
+
### Removed
|
|
16
|
+
|
|
17
|
+
- Removed `pino` and `pino-pretty` dependencies from `@artemiskit/core`.
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [27d7645]
|
|
20
|
+
- @artemiskit/core@0.1.6
|
|
21
|
+
- @artemiskit/adapter-openai@0.1.6
|
|
22
|
+
- @artemiskit/adapter-vercel-ai@0.1.6
|
|
23
|
+
- @artemiskit/redteam@0.1.6
|
|
24
|
+
- @artemiskit/reports@0.1.6
|
|
25
|
+
|
|
3
26
|
## 0.1.7
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|