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 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
  };
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reg-cli",
3
- "version": "0.0.0-experimental-wasm8",
3
+ "version": "0.0.0-experimental-wasm10",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "start": "node ./dist/cli.mjs",