shelljs-exec-proxy icon indicating copy to clipboard operation
shelljs-exec-proxy copied to clipboard

Unlimited shelljs commands with ES6 proxies

Results 9 shelljs-exec-proxy issues
Sort by recently updated
recently updated
newest added

I'm not sure if this is a bug or intentional, but I've noticed that adding double quotes around any globally installed node modules (e.g. "npm") causes node to try and...

bug
windows

I'm not sure why this test is skipped, it looks like it's been skipped since the initial commit. We can probably just enable it, but care should be taken to...

enhancement
test

To eliminate all security holes and get a consistent cross-platform API, this should migrate to ShellJS's exec-replacement after the next release (implementation can start once it has been merged).

enhancement

shelljs-exec-proxy is awesome but I can't get this to work: shell.curl('google.com', {silent:true}); or: shell.curl('google.com', function(code, stdout, stderr) { console.log('Exit code:', code); console.log('Program output:', stdout); console.log('Program stderr:', stderr); }); Are these...

enhancement
help wanted

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 3.0.1. Commits f545bdb 3.0.1 c57d4c2 fix a few old XO issues for backport 419250f Fix potential ReDoS (#37) See full diff in compare view [![Dependabot...

dependencies

See this test run: https://github.com/nfischer/shelljs-exec-proxy/actions/runs/7125051917 It looks like one of the tests broke on Windows. It looks like this is mismatch in the newline characters (`\n` vs. `\r\n`). ``` 1)...

test

Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.16.7 to 7.23.2. Release notes Sourced from @​babel/traverse's releases. v7.23.2 (2023-10-11) NOTE: This release also re-publishes @babel/core, even if it does not appear in the linked release...

dependencies

No change to logic. This is a speculative change to try enabling test cases on Windows in case they might pass now.

test
windows

This swaps out shell.exec() in favor of shell.cmd(). This should offer more reliable performance and consistent behavior. There's a known issue that this causes one test case to fail due...

enhancement