reg-cli 0.0.0-experimental-wasm8 → 0.0.0-experimental-wasm10
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/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/shared/reg.wasm +0 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -74,7 +74,7 @@ const compare = (input) => {
|
|
|
74
74
|
actualDir,
|
|
75
75
|
expectedDir,
|
|
76
76
|
diffDir,
|
|
77
|
-
...Object.entries(rest).flatMap(([k, v]) => [`--${k}`, String(v)])
|
|
77
|
+
...Object.entries(rest).flatMap(([k, v]) => v == null ? [] : [`--${k}`, String(v)])
|
|
78
78
|
];
|
|
79
79
|
return run(args);
|
|
80
80
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -67,7 +67,7 @@ const compare = (input) => {
|
|
|
67
67
|
actualDir,
|
|
68
68
|
expectedDir,
|
|
69
69
|
diffDir,
|
|
70
|
-
...Object.entries(rest).flatMap(([k, v]) => [`--${k}`, String(v)])
|
|
70
|
+
...Object.entries(rest).flatMap(([k, v]) => v == null ? [] : [`--${k}`, String(v)])
|
|
71
71
|
];
|
|
72
72
|
return run(args);
|
|
73
73
|
};
|
package/dist/shared/reg.wasm
CHANGED
|
Binary file
|