Nate Fischer
Nate Fischer
```sh $ sed -i 's/foo/bar/g' file.txt # note: this is silent $ cat file.txt bar $ shx sed -i 's/bar/baz/g' file.txt # this should be silent baz $ shx cat...
After we update minimum node version to v8 (#186), we should see if we can remove the babel config and just use ES6 features directly. This will simplify the build...
Branching off from #101. It would be cool to implement `shx help` as a ShellJS plugin, and let this show help output at a finer granularity: ```sh $ shx help...
We occasionally get issues filed at shx which are best directed at shelljs. It would be nice to have an issue template, or contributing guidelines, to instruct users to consider...
When I do a fresh install, I see tons of install warnings (due to deprecated packages): ```sh $ rm -rf node_modules/ $ npm install npm WARN deprecated [email protected]: 🙌 Thanks...
I saw this timeout on travis: https://travis-ci.org/shelljs/shx/jobs/394424558 Should investigate and possibly increase timeout.
Add in translation for `&&` and `||` as follows: ``` bash $ true && echo 'hi' hi $ false || echo 'hi' hi ``` In general, it may be tough...
Right now it's a parse error to write something like: ```sh echo hello world && echo bye ``` The first `&` is interpreted as "run in background job" (obviously the...
We no longer recommend global imports for ShellJS, so this transpiler shouldn't default to that. We should just have a different default checkbox value for "include in global namespace". ---...
Looks like `sed` doesn't support options. Probably a regression. The `-i` option is listed in the source, so I suspect this is just a bug with the `convertSed()` function not...