stale-dep
v0.7.0
Published
Check your node_modules matches your package.json.
Downloads
5,670
Readme
stale-dep
Check if your node_modules
is stale.
Running on-demand
Using npx
you can run the script without installing it first:
npx stale-dep
Usage
stale-dep -u
: store the current dependencies status.
stale-dep
: check if dependencies status is changed comparing to previous stored.
Add stale-dep
to the project
- Install stale-dep as a dev dependency:
npm install -D stale-dep
- Add
stale-dep
to your package.json.
{
"scripts": {
"build": "stale-dep && some build command",
"dev": "stale-dep && some dev command",
// ...
"postinstall": "stale-dep -u"
}
}