nirguna 1.2.0 → 1.2.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,20 @@
1
+ 2026.03.04, v1.2.2
2
+
3
+ feature:
4
+ - 2414385 nirguna: @putout/printer v18.0.0
5
+ - 87763bb @nirguna/printer-fasm: @putout/printer v18.0.0
6
+ - 5e6e0bb nemesis: get-char: do not print Control/Option
7
+
8
+ 2026.03.03, v1.2.1
9
+
10
+ fix:
11
+ - eedfbf4 nirguna: bin: no output
12
+ - 11c51a9 @nirguna/plugin-bundler-fasm: replace-section-const-with-equ: order
13
+
14
+ feature:
15
+ - 8680c9b @nirguna/printer-fasm: rm unused
16
+ - 778ba36 @nirguna/printer-fasm: remove unused
17
+
1
18
  2026.03.02, v1.2.0
2
19
 
3
20
  fix:
package/bin/nirguna.js CHANGED
@@ -140,10 +140,10 @@ if (args.output) {
140
140
  }
141
141
 
142
142
  if (!args.output)
143
- if (args.target === 'fasm')
144
- write(name, 'bin', binary);
145
- else if (args.target === 'wasm')
143
+ if (args.target === 'wasm')
146
144
  write(name, 'wasm', binary);
145
+ else
146
+ write(name, 'bin', binary);
147
147
 
148
148
  if (args.target === 'wast')
149
149
  write(name, 'wast', binary);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nirguna",
3
- "version": "1.2.0",
3
+ "version": "1.2.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",
@@ -47,7 +47,7 @@
47
47
  "@putout/plugin-esm": "^10.0.1",
48
48
  "@putout/plugin-remove-nested-blocks": "^9.0.0",
49
49
  "@putout/plugin-remove-useless-operand": "^3.0.0",
50
- "@putout/printer": "^17.1.0",
50
+ "@putout/printer": "^18.0.0",
51
51
  "@typescript-eslint/typescript-estree": "^8.32.1",
52
52
  "chalk": "^5.4.1",
53
53
  "fasm.js": "^1.0.7",