Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove support for older Node.js versions than
14.18.0
(#23)
`np` (`npm run release`) now requires the `engines.node` field in `package.json`, so this change adds the field. The minimum version is determined by `ls-engines`. ```console $ npx ls-engines@latest ... ┌────────────────────────┬───────────────────────────┐ │ package engines: │ dependency graph engines: │ ├────────────────────────┼───────────────────────────┤ │ "engines": { │ "engines": { │ │ "node": ">= 14.18.0" │ "node": ">= 14.18" │ │ } │ } │ └────────────────────────┴───────────────────────────┘ ... Your “engines” field exactly matches your dependency graph’s requirements! ```
- Loading branch information