Check if your node_modules is stale.
Using npx you can run the script without installing it first:
npx stale-depstale-dep -u: store the current dependencies status.
stale-dep: check if dependencies status is changed comparing to previous stored.
- Install stale-dep as a dev dependency:
npm install -D stale-dep- Add
stale-depto your package.json.
MIT License © 2023-PRESENT Kevin Deng
{ "scripts": { "build": "stale-dep && some build command", "dev": "stale-dep && some dev command", // ... "postinstall": "stale-dep -u", }, }