chore(node): update node to non-EOL version (#9252)

This commit is contained in:
david-leifker 2023-11-16 12:09:28 -06:00 committed by GitHub
parent e15e28e2d6
commit cd789b8d76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -16,10 +16,10 @@ node {
} }
// Version of node to use. // Version of node to use.
version = '16.8.0' version = '21.2.0'
// Version of Yarn to use. // Version of Yarn to use.
yarnVersion = '1.22.0' yarnVersion = '1.22.1'
// Base URL for fetching node distributions (set nodeDistBaseUrl if you have a mirror). // Base URL for fetching node distributions (set nodeDistBaseUrl if you have a mirror).
if (project.hasProperty('nodeDistBaseUrl')) { if (project.hasProperty('nodeDistBaseUrl')) {

View File

@ -95,7 +95,7 @@
"start:mock": "yarn run generate && BROWSER=none REACT_APP_MOCK=true craco start", "start:mock": "yarn run generate && BROWSER=none REACT_APP_MOCK=true craco start",
"start:e2e": "REACT_APP_MOCK=cy BROWSER=none PORT=3010 craco start", "start:e2e": "REACT_APP_MOCK=cy BROWSER=none PORT=3010 craco start",
"ec2-dev": "yarn run generate && CI=true;export CI;BROWSER=none craco start", "ec2-dev": "yarn run generate && CI=true;export CI;BROWSER=none craco start",
"build": "yarn run generate && CI=false REACT_APP_MOCK=false craco build && rm -rf dist/ && cp -r build/yarn/ dist/ && rm -r build/yarn/", "build": "yarn run generate && NODE_OPTIONS=--openssl-legacy-provider CI=false REACT_APP_MOCK=false craco build && rm -rf dist/ && cp -r build/yarn/ dist/ && rm -r build/yarn/",
"test": "craco test", "test": "craco test",
"pretest:e2e:ci": "yarn generate", "pretest:e2e:ci": "yarn generate",
"test:e2e": "start-server-and-test start:e2e 3010", "test:e2e": "start-server-and-test start:e2e 3010",