nirguna 1.0.0 → 1.0.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 CHANGED
@@ -1,3 +1,16 @@
1
+ 2026.02.12, v1.0.2
2
+
3
+ fix:
4
+ - 7192598 @nirguna/plugin-bundler: name
5
+
6
+ 2026.02.12, v1.0.1
7
+
8
+ feature:
9
+ - 1dd185e nirguna: cli-args: publish
10
+ - 83fb42e @nirguna/operator-nemesis: publish
11
+ - 9609778 @nirguna/plugin-optimizer-fasm: publish
12
+ - bef7f80 nirguna: set version
13
+
1
14
  2026.02.08, v3.0.0
2
15
 
3
16
  fix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nirguna",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Compile JavaScript to WASM and FASM",
@@ -30,14 +30,14 @@
30
30
  "build:nemesis:fasm": "madrun build:nemesis:fasm"
31
31
  },
32
32
  "dependencies": {
33
- "@nirguna/bundler": "*",
34
- "@nirguna/cli-args": "*",
35
- "@nirguna/cli-help": "*",
36
- "@nirguna/plugin-bandler-fasm": "*",
33
+ "@nirguna/bundler": "^1.0.0",
34
+ "@nirguna/cli-args": "^1.0.0",
35
+ "@nirguna/cli-help": "^1.0.0",
36
+ "@nirguna/plugin-bundler-fasm": "^1.0.0",
37
37
  "@nirguna/plugin-fasm": "^1.0.0",
38
38
  "@nirguna/plugin-nirguna": "*",
39
39
  "@nirguna/plugin-nemesis": "*",
40
- "@nirguna/plugin-optimizer-fasm": "*",
40
+ "@nirguna/plugin-optimizer-fasm": "^1.0.0",
41
41
  "@nirguna/plugin-optimizer-wasm": "*",
42
42
  "@nirguna/plugin-wasm": "^1.0.0",
43
43
  "@nirguna/runner-fasm": "*",
@@ -85,7 +85,6 @@
85
85
  "#plugin-wasm": "./packages/plugin-wasm/lib/index.js",
86
86
  "#plugin-fasm": "./packages/plugin-fasm/lib/index.js",
87
87
  "#plugin-nirguna": "./packages/plugin-nirguna/lib/index.js",
88
- "#plugin-bundler-fasm": "./packages/plugin-bundler-fasm/lib/index.js",
89
88
  "#compiler-wasm": "./packages/compiler-wasm/compiler.js",
90
89
  "#compiler-fasm": "./packages/compiler-fasm/compiler.js",
91
90
  "#optimizer-fasm": "./packages/optimizer-fasm/optimizer.js",
@@ -4,7 +4,7 @@ import * as removeUselessOperand from '@putout/plugin-remove-useless-operand';
4
4
  import * as removeNestedBlocks from '@putout/plugin-remove-nested-blocks';
5
5
  import * as fasm from '@nirguna/plugin-fasm';
6
6
  import * as nirguna from '@nirguna/plugin-nirguna';
7
- import * as bundler from '@nirguna/plugin-bandler-fasm';
7
+ import * as bundler from '@nirguna/plugin-bundler-fasm';
8
8
 
9
9
  const defaultConfig = {
10
10
  rules: {},