@xnoxs/flux-lang 3.3.1 → 3.3.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/dist/flux-cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /*!
3
- * flux-lang v3.3.1
3
+ * flux-lang v3.3.2
4
4
  * Flux — A modern language that transpiles to JavaScript. Python-clean syntax, TypeScript-level safety, Rust-inspired pattern matching.
5
5
  * (c) 2026 Flux Lang Contributors
6
6
  * Released under the MIT License
@@ -7163,7 +7163,7 @@ var require_package = __commonJS({
7163
7163
  "package.json"(exports2, module2) {
7164
7164
  module2.exports = {
7165
7165
  name: "@xnoxs/flux-lang",
7166
- version: "3.3.1",
7166
+ version: "3.3.2",
7167
7167
  description: "Flux \u2014 A modern language that transpiles to JavaScript. Python-clean syntax, TypeScript-level safety, Rust-inspired pattern matching.",
7168
7168
  main: "dist/flux.cjs.js",
7169
7169
  module: "dist/flux.esm.js",
@@ -8808,7 +8808,8 @@ function cmdRun(filePath, opts) {
8808
8808
  const { source, abs } = readFluxFile(filePath);
8809
8809
  const result = transpile(source, {
8810
8810
  jsxTarget: opts && opts.jsxTarget,
8811
- mangle: opts && opts.mangle
8811
+ mangle: false
8812
+ // never mangle in run mode — code is executed directly
8812
8813
  });
8813
8814
  if (!result.success) {
8814
8815
  console.error(clr(C.red, `
package/dist/flux.cjs.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * flux-lang v3.3.1
2
+ * flux-lang v3.3.2
3
3
  * Flux — A modern language that transpiles to JavaScript. Python-clean syntax, TypeScript-level safety, Rust-inspired pattern matching.
4
4
  * (c) 2026 Flux Lang Contributors
5
5
  * Released under the MIT License
package/dist/flux.esm.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * flux-lang v3.3.1
2
+ * flux-lang v3.3.2
3
3
  * Flux — A modern language that transpiles to JavaScript. Python-clean syntax, TypeScript-level safety, Rust-inspired pattern matching.
4
4
  * (c) 2026 Flux Lang Contributors
5
5
  * Released under the MIT License
package/dist/flux.min.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * flux-lang v3.3.1
2
+ * flux-lang v3.3.2
3
3
  * Flux — A modern language that transpiles to JavaScript. Python-clean syntax, TypeScript-level safety, Rust-inspired pattern matching.
4
4
  * (c) 2026 Flux Lang Contributors
5
5
  * Released under the MIT License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xnoxs/flux-lang",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Flux — A modern language that transpiles to JavaScript. Python-clean syntax, TypeScript-level safety, Rust-inspired pattern matching.",
5
5
  "main": "dist/flux.cjs.js",
6
6
  "module": "dist/flux.esm.js",