@hyperscale0/udl 1.0.0-alpha.1 → 1.0.0-alpha.2

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 CHANGED
@@ -10,6 +10,16 @@ here under the release that made it.
10
10
 
11
11
  ## [Unreleased]
12
12
 
13
+ ## [1.0.0-alpha.2] - 2026-08-23
14
+
15
+ ### Fixed
16
+
17
+ - `bin` points at the built JavaScript; alpha.1's registry metadata pointed at
18
+ TypeScript source. npm builds the packument from package.json as it sits on
19
+ disk after `postpack`, so the pack-time rewrite never reached `bin`, and
20
+ every install linked `.bin/udl` to `src/cli.ts`, which Node refuses to
21
+ execute.
22
+
13
23
  ### Changed
14
24
 
15
25
  - Licensed AGPL-3.0-only with a commercial license from Hyperscale LLC;
@@ -32,5 +42,6 @@ First public release. Format version 1.
32
42
  - `bun run spec:check`, which fails when the committed schema drifts from the
33
43
  grammar it was generated from.
34
44
 
35
- [Unreleased]: https://github.com/hyperscale0/hyperscale-udl/compare/v1.0.0-alpha.1...HEAD
45
+ [Unreleased]: https://github.com/hyperscale0/hyperscale-udl/compare/v1.0.0-alpha.2...HEAD
46
+ [1.0.0-alpha.2]: https://github.com/hyperscale0/hyperscale-udl/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
36
47
  [1.0.0-alpha.1]: https://github.com/hyperscale0/hyperscale-udl/releases/tag/v1.0.0-alpha.1
package/README.md CHANGED
@@ -21,11 +21,13 @@ is specified in [`spec/`](./spec/README.md) and pinned by
21
21
  ## Install
22
22
 
23
23
  ```bash
24
- npm install @hyperscale0/udl@alpha
24
+ npm install @hyperscale0/udl
25
25
  ```
26
26
 
27
- There is no `latest` tag before 1.0.0, so a bare `npm install @hyperscale0/udl`
28
- fails loudly rather than installing something you did not choose.
27
+ Every release before 1.0.0 is an alpha, and `latest` follows the newest one, so
28
+ a bare install gets it. `npm install @hyperscale0/udl@alpha` is the explicit
29
+ form and resolves to the same version. Pin an exact version if you need one:
30
+ until 1.0.0 a change to the surface ships as a minor bump, not a major.
29
31
 
30
32
  ## Thirty seconds
31
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperscale0/udl",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.2",
4
4
  "description": "The Universal Domain Language: format spec, parser, validator, canonical serializer, and evolution diff.",
5
5
  "keywords": [
6
6
  "udl",
@@ -55,12 +55,11 @@
55
55
  "node": ">=22.0.0"
56
56
  },
57
57
  "publishConfig": {
58
- "access": "public",
59
- "tag": "alpha"
58
+ "access": "public"
60
59
  },
61
60
  "scripts": {
62
61
  "build": "tsc -p tsconfig.build.json",
63
- "check": "bun run spec:check && bun test && tsc -p tsconfig.json",
62
+ "check": "bun run spec:check && bun test && tsc -p tsconfig.json && bun run build && bun scripts/check-bin.ts",
64
63
  "postpack": "bun scripts/pack-exports.ts restore",
65
64
  "prepack": "bun run build && bun scripts/pack-exports.ts apply",
66
65
  "spec": "bun scripts/emit-spec.ts --write",