@xnoxs/flux-lang 3.2.1 → 3.3.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 CHANGED
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [3.2.2] — 2026-06-24
11
+
12
+ ### Changed
13
+ - **Package structure refactored** — production-ready build:
14
+ - `"main"` → `dist/flux.cjs.js` (bundled library, was raw `index.js`)
15
+ - `"module"` → `dist/flux.esm.js` (ESM entry for bundlers)
16
+ - `"exports"` updated with proper `import`/`require` conditions
17
+ - CLI implementation moved to `src/cli.js`, bundled into `dist/flux-cli.js` (339 kB)
18
+ - `bin/flux.js` is now a thin shim (`require('../dist/flux-cli.js')`)
19
+ - `"files"` trimmed: only `bin/`, `dist/`, `src/stdlib.js`, `src/formatter.js`, `src/self/` shipped to npm
20
+
21
+ ---
22
+
10
23
  ## [3.2.1] — 2026-06-24
11
24
 
12
25
  ### Changed