221 Commits

Author SHA1 Message Date
Remy Sharp
976e5ff77d chore: update semver packages 2021-06-29 13:50:16 +01:00
Remy Sharp
6d320b2dab chore: update commitlint (#1824) 2021-01-06 14:59:13 +00:00
Remy Sharp
9595d945ef chore: merge
* 'master' of github.com:remy/nodemon:
  fix: postinstall hide message in CI
  chore: change test targets (#1788)
  chore: Switch from JSCS to ESLint
  fix: ignore ./<path> on cwd (#1787)
  fix: runOnChangeOnly=true
2021-01-06 10:41:04 +00:00
Remy Sharp
a12cc4d1e3 chore: update commitlint 2021-01-06 10:39:18 +00:00
Antriksh Yadav
66ec7cd414 chore: Switch from JSCS to ESLint 2020-10-19 19:20:05 +01:00
Remy Sharp
6c471af09a chore: update lock file
[skip ci]
2020-05-14 13:32:41 +01:00
Remy Sharp
a74f5dc3ef fix: add funding in package
I'd be prepared to bet the house that npm 7's postinstall block and funding support pretty much kills support. Ah well.
2020-05-14 12:23:08 +01:00
snyk-bot
a4490e2156 fix: package.json & package-lock.json to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JS-DOTPROP-543489
2020-04-08 17:55:50 +01:00
Radu Micu
9a67f361a0 feat: update chokidar to v3
BREAKING CHANGE:

Massive CPU & RAM consumption improvements. 17x package & deps size reduction.
2019-11-20 15:16:55 +00:00
Remy Sharp
d5b98915eb test: ensure ignore relative paths
(when asked)
2019-10-07 18:11:43 +01:00
Remy Sharp
aa41ab2124 fix: hard bump of chokidar@2.1.5 2019-04-08 21:59:59 +01:00
Remy Sharp
fb0c078013 fix: bump chokidar
Fixes #1522
Fixes #1208

Thanks to @mikemaccana for original PR
2019-02-08 22:13:49 +00:00
Remy Sharp
dd0b96a943 fix: rs in node@11 (#1493)
Fixes node 11's `rs` support. Somehow required that the `process.stdin` to be disconnected from the child before the stream is resumed (whereas previously it seemed that it would automatically happen…possibly a node 11 bug).

Fixes #1493
2018-12-14 17:43:18 +00:00
Remy Sharp
735afd5221 fix: docker leaving running pids (via pstree)
Fixes #1447
Fixes #1477
Fixes #1484
2018-12-10 18:10:00 +00:00
Remy Sharp
c57223181d chore: bump pstree 2018-11-22 11:20:24 +00:00
Remy Sharp
b35c532455 fix: remove deep ps-tree dep
Fixes #1451
2018-11-22 08:28:23 +00:00
thomas
3afa52c56d fix: nodemon installation for node 10.x and beyond (#1441)
* chore: update the package-lock file using pinned version

The commit 97f8d0a175 introduces versions
prefixed with carets whereas this lockfile needs to pin each
dependencies (same when a user executes `npm i`).

* chore: update chokidar to 2.0.4

this version (11aea72ad7)
fixes the issue related to "upath" that was limiting the node runtime to
9.x (https://github.com/anodynos/upath/blob/v1.0.2/package.json#L43).
2018-10-26 11:43:41 +01:00
Remy Sharp
ee2aac1651 fix: support env.SUPPRESS_SUPPORT (#1334)
Show request for help once a week/install and support process.env.SUPPRESS_SUPPORT to hide entirely.
2018-05-05 20:19:36 +01:00
Remy Sharp
e16f2fecf6 chore: revert package
[skip ci]
2018-03-03 10:22:22 +00:00
Remy Sharp
7fb365d0cc feat: try to resolve exec in node_modules/.bin (#1275)
Fixes #1268
2018-02-27 16:44:14 +00:00
Remy Sharp
94b526f80a fix: put windows drive letter tweak in right place (#1272)
Fixes #1263
2018-02-27 16:42:51 +00:00
Remy Sharp
f4391d4ff1 fix: make clear where more opts are in help (#1271) 2018-02-27 16:42:20 +00:00
Remy Sharp
70cfb7dc23 chore: intentional bump of chokidar (#1257)
* docs: add sponsors

[skip ci]

* chore: intentional bump of chokidar

Fixes #1225
2018-02-15 21:58:03 +00:00
Remy Sharp
9d498523d7 fix: update deps - chokidar@2.0.0 in particular 2018-01-11 11:00:35 +00:00
Remy Sharp
e90f15aa8a fix: node < 6.4.0 causing crash on 'rs' trigger
* fix: node < 6.4.0 can't connect to stdin
* fix: child stdio when spawn is similar to fork

Fixes #1218
2018-01-09 13:18:08 +00:00
Remy Sharp
64a82ff81a fix: fail gracefully if postinstall fails 2018-01-06 09:35:25 +00:00
Remy Sharp
5a914cb35b fix: handle exit(2) better 2017-12-29 10:55:12 +00:00
Remy Sharp
d15cf686f7 fix: remove scoped dep
Fixes #1180
2017-12-20 14:09:03 +00:00
Remy Sharp
67d146637e refactor: remove libraries over native es6 support 2017-12-20 14:09:03 +00:00
Remy Sharp
1171fc1a9a fix: nodemon reporting crash
Fixes #1173
2017-12-16 01:17:47 +00:00
Remy Sharp
770c90dcdd test: bump pstree for node 4 support 2017-12-15 14:14:26 +00:00
Remy Sharp
bf9b7a6876 fix: if no ps, walk /proc to kill child fully
Originally used ps-tree which relied on `ps` on *nix. But if the system
didn't have `ps` at all, we'd try to kill the child process, but alas
this would not always work, as we're spawning `sh` and _then_ node, so
the kill would only kill the `sh` process, and not the running node
process.

The new @remy/pstree lib sniffs for `ps` and defers to ps-tree,
otherwise it will walk /proc and map the PPID to the child process
allowing nodemon to fully clean up.
2017-12-15 14:14:26 +00:00
Remy Sharp
a282afbbe3 fix: support nodemon index to expand to index.js
With support for custom extensions (picking only the first).

Fixes #1165
2017-12-15 08:45:49 +00:00
Alex
6d760f4f81 fix: restore node 4 min support
* node 4 min
* add node 4 to travis
2017-12-12 17:36:15 +00:00
Remy Sharp
6a4fb22602 fix: pass through execArgs from config (#1142)
* fix: pass through execArgs from config

Also updating some deps and linting tweaks

* chore: add message on postinstall

Lost funds from gratipay and codesponsor 😢
2017-12-05 18:01:55 +00:00
Remy Sharp
18c03f90e8 chore: bump dev deps 2017-12-05 14:59:27 +00:00
Remy Sharp
71eab1aeeb fix: require node 6 or above in engines 2017-12-04 22:15:21 +00:00
Remy Sharp
2bb587ce0a chore: update semantic release process 2017-12-04 20:50:29 +00:00
Remy Sharp
6d57dac0ee fix: bump deps and fix tests for local dev (#1139)
Upgraded tests for node 8
2017-12-04 14:56:44 +00:00
Remy Sharp
2af639102d fix: add commit lint 2017-09-04 20:26:29 +01:00
Bennett Somerville
8204b69229 chore: update update-notifier (#1083) 2017-09-04 19:23:33 +01:00
Ricardo Giorni
5321a2b694 chore: touch@3.1.0 (#1085) 2017-09-04 19:22:36 +01:00
Olivier Louvignes
805c90a136 chore(npm): bump chokidar and test against node@^6.0 (fixes #824) 2016-04-29 19:25:39 +02:00
Mark Wubben
6ccb29864c refactor: get default ignoreRoot from ignore-by-default
Switches the default ignoreRoot to a list obtained from the ignore-by-default
package. See <https://github.com/novemberborn/ignore-by-default>.

This allows nodemon to tap into a shared list of directories it should ignore
when watching for changes. E.g. compared to the original list it's already been
extended with `.nyc_output` and `coverage` directories.
2016-02-25 21:08:44 +00:00
Andrew Goodricke
095fa7b4d8 preferGlobal: Removed as discussed in #772

2016-02-25 21:08:44 +00:00
Sebastiaan Deckers
ef916f62b0 fix: bump ps-tree dependency
Solves toolchain warning about missing SPDX license in outdated
dependency ps-tree@0.0.3 -> event-stream@0.5.3 -> optimist@0.2.8.
2015-10-19 12:27:54 +01:00
Remy Sharp
3eea9ec675 fix: dep bumps 2015-10-19 12:27:54 +01:00
greenkeeperio-bot
50de43b3bc chore(package): pinned dependencies
http://greenkeeper.io/
2015-10-19 12:27:53 +01:00
Remy Sharp
12d02b5ec2 test: update tests with new pkg.start 2015-09-19 09:43:12 +01:00
Remy Sharp
7250919e6d fix: restore file count in verbose mode 2015-09-12 11:34:20 +01:00