nirguna 1.2.0 → 1.2.1
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 +10 -0
- package/bin/nirguna.js +3 -3
- package/package.json +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
2026.03.03, v1.2.1
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- eedfbf4 nirguna: bin: no output
|
|
5
|
+
- 11c51a9 @nirguna/plugin-bundler-fasm: replace-section-const-with-equ: order
|
|
6
|
+
|
|
7
|
+
feature:
|
|
8
|
+
- 8680c9b @nirguna/printer-fasm: rm unused
|
|
9
|
+
- 778ba36 @nirguna/printer-fasm: remove unused
|
|
10
|
+
|
|
1
11
|
2026.03.02, v1.2.0
|
|
2
12
|
|
|
3
13
|
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 === '
|
|
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);
|