slnodejs 6.1.935 → 6.1.936

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.
Files changed (2) hide show
  1. package/lib/preload.js +2 -1
  2. package/package.json +1 -1
package/lib/preload.js CHANGED
@@ -37,7 +37,8 @@ function main() {
37
37
 
38
38
  const [argv0, ...restArgv] = process.argv.map(x => x.includes(' ') ? `"${x}"` : x);
39
39
  const originalArgv = process.argv.join(' ');
40
- const args = ['run', ...token.split(' '), ...bsid.split(' '), ...projectRoot.split(' '), '--', ...restArgv];
40
+ const args = ['run', ...token.split(' '), ...bsid.split(' '), ...projectRoot.split(' '), '--', ...restArgv]
41
+ .filter(x => x); // remove unset arguments
41
42
  const processArgs = [pathToSlAgentCli, ...args];
42
43
  process.env.NODE_OPTIONS = '';
43
44
  process.env.NODE_DEBUG = 'sl';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slnodejs",
3
- "version": "6.1.935",
3
+ "version": "6.1.936",
4
4
  "description": "",
5
5
  "main": "tsOutputs/api.js",
6
6
  "workspaces": [