Nate Fischer

Results 81 issues of 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...

fix
breaking
sed

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...

chore

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...

feat

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...

chore

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...

chore
medium priority

I saw this timeout on travis: https://travis-ci.org/shelljs/shx/jobs/394424558 Should investigate and possibly increase timeout.

test

Add in translation for `&&` and `||` as follows: ``` bash $ true && echo 'hi' hi $ false || echo 'hi' hi ``` In general, it may be tough...

enhancement
help wanted
translator
Difficulty: medium

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...

bug
enhancement
help wanted
Difficulty: medium

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". ---...

enhancement
help wanted
Difficulty: easy

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...

bug
help wanted
translator
Difficulty: easy