Merge pull request #11423 from strapi/v4/node16

Enable Node 16 and NPM 7/8 support on generation
This commit is contained in:
Alexandre BODIN 2021-11-02 09:55:54 +01:00 committed by GitHub
commit 24fcc1228b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -43,9 +43,9 @@ If applicable, add code samples to help explain your problem.
### System
- Node.js version: <!-- Please ensure you are using the Node LTS version (v12 / v14) -->
- Node.js version: <!-- Please ensure you are using the Node LTS version (v12, v14, v16) -->
- NPM version:
- Strapi version: <!-- Beta and Alpha versions are no longer supported -->
- Strapi version: <!-- v3 is not supported unless it is a critical/high security issue -->
- Database:
- Operating system:

View File

@ -62,7 +62,7 @@ The core team will review your pull request and will either merge it, request ch
## Contribution Prerequisites
- You have [Node](https://nodejs.org/en/) at >= v10 and <= v14 and [Yarn](https://yarnpkg.com/en/) at v1.2.0+.
- You have [Node](https://nodejs.org/en/) at >= v12 and <= v16 and [Yarn](https://yarnpkg.com/en/) at v1.2.0+.
- You are familiar with Git.
## Development Workflow

View File

@ -44,8 +44,8 @@ module.exports = opts => {
...packageJsonStrapi,
},
engines: {
node: '>=12.x.x <=14.x.x',
npm: '^6.0.0',
node: '>=12.x.x <=16.x.x',
npm: '>=6.0.0',
},
license: 'MIT',
};