argsbarg 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -7,8 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.1.1] - 2026-04-23
11
+
12
+ ### Changed
13
+
14
+ - fix exports in package.json
15
+
10
16
  ## [1.1.0] - 2026-04-23
11
17
 
18
+ ### Changed
19
+
20
+ - gen index.d.ts with `dts-bundle-generator` so that consumers don't typecheck the source files
12
21
 
13
22
  ## [1.0.1] - 2026-04-22
14
23
 
@@ -43,7 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
43
52
  - Migrate schemas: rename every `children` property to **`commands`**; move positional definitions to **`CliPositional`** objects on `positionals` and strip `positional` / `argMin` / `argMax` from flag definitions under `options` (flags only carry `name`, `description`, `kind`, and optional `shortName`).
44
53
  - Imports: use `CliPositional` where needed; replace `CliOptionDef` with `CliOption` or `CliPositional` as appropriate.
45
54
 
46
- [Unreleased]: https://github.com/bdombro/bun-argsbarg/compare/v1.1.0...HEAD
55
+ [Unreleased]: https://github.com/bdombro/bun-argsbarg/compare/v1.1.1...HEAD
56
+ [1.1.1]: https://github.com/bdombro/bun-argsbarg/releases/tag/v1.1.1
47
57
  [1.1.0]: https://github.com/bdombro/bun-argsbarg/releases/tag/v1.1.0
48
58
  [1.0.1]: https://github.com/bdombro/bun-argsbarg/releases/tag/v1.0.1
49
59
  [1.0.0]: https://github.com/bdombro/bun-argsbarg/releases/tag/v1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "argsbarg",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "//just": "echo this app uses justfile for development tasks"
@@ -12,7 +12,10 @@
12
12
  "argsbarg": "src/index.ts"
13
13
  },
14
14
  "exports": {
15
- ".": "./src/index.ts"
15
+ ".": {
16
+ "types": "./index.d.ts",
17
+ "default": "./src/index.ts"
18
+ }
16
19
  },
17
20
  "devDependencies": {
18
21
  "@types/bun": "^1.3.12"