458 Commits

Author SHA1 Message Date
Nate Fischer
e2f980e29d feat(set): add -f option to disable shell globbing 2016-02-16 09:48:24 -08:00
Ari Porad
3ebfe1a070 Merge pull request #352 from shelljs/glob-all-commands
feat(glob): glob support for (almost) all commands
2016-02-14 11:44:46 -08:00
Ari Porad
7531d3a0ee Merge pull request #354 from shelljs/fix-exec-temp-files
fix(exec): temp files are now cleaned up
2016-02-14 08:49:57 -08:00
Nate Fischer
3a7eb3f2ad feat(glob): glob support for (almost) all commands 2016-02-13 21:22:48 -08:00
Nate Fischer
3cd360c77d Merge pull request #348 from shelljs/test-exec-shell-option
fix(exec): now actually supports shell option
2016-02-13 20:51:21 -08:00
Nate Fischer
b63dde5d1a fix(exec): now actually supports shell option 2016-02-13 20:45:32 -08:00
Ari Porad
86ced7eb91 chore: test documentup hook 2016-02-13 19:39:02 -08:00
Nate Fischer
fed412ff1b fix(exec): temp files are now cleaned up 2016-02-11 15:20:32 -08:00
Ari Porad
90569dcdac Merge pull request #349 from shelljs/feat-grep-l-option
feat(grep): add -l option
2016-02-10 20:30:51 -08:00
Nate Fischer
3ea5e247ee feat(grep): add -l option
`grep -l` will only print filenames of matching files.
2016-02-09 09:23:17 -08:00
Nate Fischer
bc13470f91 Update examples in docs for cp() 2016-02-05 13:48:28 -08:00
Ari Porad
fe06baf117 Merge pull request #338 from shelljs/release/v0.6.0
chore: release v0.6.0
v0.6.0
2016-02-04 16:37:53 -08:00
Ari Porad
3dddadfb40 chore(package): add @ariporad and @nfischer as contributors and bump version 2016-02-04 16:11:08 -08:00
Ari Porad
f9c8fc0f7b Merge pull request #341 from shelljs/feat-valued-options
fix(touch): enhance parseOptions and fix touch's -r flag
2016-02-04 16:00:45 -08:00
Nate Fischer
dc79d7eff0 fix(touch): enhance parseOptions and fix touch's -r flag 2016-02-04 15:41:48 -08:00
Nate Fischer
a35f9dd728 Merge pull request #337 from shelljs/no-coffeescript-in-README
docs(README): remove coffeescript from README
2016-02-04 15:41:16 -08:00
Nate Fischer
9ecff1f9c6 Merge pull request #339 from shelljs/better-npmignore
chore(.npmignore): update npmignore
2016-02-04 15:31:57 -08:00
Ari Porad
79343661a9 docs(README): remove coffeescript from README
Other than the CoffeeScript section
2016-02-04 15:31:26 -08:00
Ari Porad
3e22277c94 chore(.npmignore): update npmignore 2016-02-04 15:21:38 -08:00
Ari Porad
c0d9cf7ba1 Merge pull request #335 from shelljs/more-exec-options
feat(exec): allow all exec options to pass through
2016-02-04 14:56:25 -08:00
Nate Fischer
164a214e5a use common.extend 2016-02-04 12:17:01 -08:00
Ari Porad
3c89df717a Merge pull request #336 from shelljs/fix-cp-semantics
fix(cp): add -n option, make -f default behavior
2016-02-04 11:31:30 -08:00
Nate Fischer
8377b927bf fix(cp): add -n option, make -f default behavior 2016-02-03 21:13:48 -08:00
Nate Fischer
058bb679b0 feat(exec): allow all exec options to pass through 2016-02-03 20:54:41 -08:00
Nate Fischer
f729896516 Merge pull request #329 from shelljs/feat-set-command
feat(set): add new set() command
2016-01-31 20:26:39 -08:00
Ari Porad
ee5baf7344 Merge pull request #326 from shelljs/fix-cat-semantics
fix(cat): make behavior more like unix
2016-01-31 20:25:26 -08:00
Nate Fischer
ca045ea4c5 feat(set): add new set() command
Add new set() command as a wrapper for `config` variables. This takes the `-e`,
`-v`, `+e`, and `+v` flags.
2016-01-31 20:17:37 -08:00
Ari Porad
b764c40e00 docs: add link to issue tracker to README 2016-01-31 20:12:22 -08:00
Ari Porad
5e1747865d docs: remove @arturdib's twitter from the README 2016-01-31 18:41:25 -08:00
Ari Porad
18d6b6d320 Merge pull request #328 from shelljs/fix-mv-semantics
fix(mv): add -n option, make -f default behavior
2016-01-31 18:35:22 -08:00
Nate Fischer
2d1ee4dae4 fix(mv): add -n option, make -f default behavior 2016-01-31 15:34:01 -08:00
Nate Fischer
760c191081 Merge pull request #321 from BYK/ignore-idea
Rewrite .gitignore to be more comprehensive
2016-01-31 11:20:57 -08:00
Nate Fischer
d8466a14dd Merge pull request #324 from shelljs/ls-l-option
feat(ls): add -l  option
2016-01-31 11:18:09 -08:00
Nate Fischer
e918c758a2 feat(ls): add -l option
The `-l` option will now cause `ls()` to return an object containing file stats.
These objects will also have a toString() method that formats it into something
analogous to `ls -l`'s output format.
2016-01-31 11:08:03 -08:00
Ari Porad
a96467a6f5 Merge pull request #290 from isiahmeadows/pathext
feat(Windows): search PATHEXT instead of 3 hardcoded values
2016-01-31 09:01:16 -08:00
Ari Porad
514e7b0c75 Merge pull request #322 from BYK/linking-windows
fix(Windows): fix symlinking on Windows
2016-01-31 08:31:34 -08:00
Burak Yigit Kaya
fb5a7ece66 Fix symlinking on Windows
Fixes symlink creation on Windows systems and adds a test
for symlinking directories since it needs special treatment
on Windows.

Fixes #301.
2016-01-31 13:15:22 +02:00
Burak Yigit Kaya
636e084741 Rewrite .gitignore to be more comprehensive
Ignores more Node/NPM files and adds ignore rules for the following:

- Linux
- OS X
- Vim
- JetBrains IDEs
2016-01-31 13:14:08 +02:00
Nate Fischer
580d6d3301 fix(cat): make behavior more like unix
`cat()` no longer puts '\n's in weird places (causing double newlines), and
no longer improperly strips off a trailing newline.
2016-01-31 00:07:53 -08:00
Nate Fischer
6bdee43ab5 fix appveyor badge to point to master branch only 2016-01-30 18:34:11 -08:00
Isiah Meadows
eaa771033e Search PATHEXT for which, do a lowercase comparison on Windows
Redo of #134

`which` now searches through PATHEXT on Windows, and it also now does a
case-insensitive comparison. This better fits the Windows environment, where
the OS usually ignores case.
2016-01-29 13:34:20 -05:00
Nate Fischer
c072738758 Merge pull request #314 from shelljs/sed-multiple-files
feat(sed): support multiple file names
2016-01-27 19:24:19 -08:00
Nate Fischer
bccf620787 feat(sed): support multiple file names
fixes #231. Semantics are like unix sed.
2016-01-27 19:08:33 -08:00
Nate Fischer
b170d20122 Merge pull request #297 from BYK/fix-win-tests
Fix tests on Windows
2016-01-27 19:04:37 -08:00
Ari Porad
86fb8d19af Merge pull request #307 from TimothyGu/patch-1
chore(travis): switch to travis container based infrastructure and don't test `0.11`
2016-01-27 16:22:08 -08:00
Ari Porad
522431c177 Merge pull request #313 from shelljs/gitter-webhooks
chore(gitter/travis): add gitter webhook to travis
2016-01-27 16:20:38 -08:00
Ari Porad
ef7e2562a4 Merge pull request #316 from shelljs/appveyor-badge
chore(appveyor): add badge
2016-01-27 16:13:58 -08:00
Ari Porad
a67f66a9b6 Merge pull request #315 from shelljs/fix-shjs-test
fix(windows): fix shjs commands for windows
2016-01-27 16:12:52 -08:00
Nate Fischer
f9a11ddfd5 chore(appveyor): add badge 2016-01-27 15:33:11 -08:00
Nate Fischer
985ac20cd6 fix(windows): fix shjs tests for windows 2016-01-27 15:24:08 -08:00