@toiroakr/lines-db 0.9.2 → 0.10.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/CHANGELOG.md +13 -0
- package/bin/cli.mjs +7064 -125
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +17 -19
- package/src/cli.ts +112 -111
- package/tsdown.config.ts +9 -5
- package/dist/index.cjs +0 -1463
- package/dist/index.d.cts +0 -604
- package/dist/index.d.cts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @toiroakr/lines-db
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 332b239: Drop CJS build and replace tsx with amaro
|
|
8
|
+
|
|
9
|
+
- ESM-only build. Node.js 22.12+ (VSCode 1.118+) required.
|
|
10
|
+
- Replace `tsx` runtime dependency with `amaro` for TypeScript schema file loading.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- c42865e: Replace commander with politty for the CLI framework. Bundle zod and politty into the CLI binary so they are no longer installed as runtime dependencies for library users.
|
|
15
|
+
|
|
3
16
|
## 0.9.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|