From c4d92a9eac56a7158acd7620c1a95fcee6a9b796 Mon Sep 17 00:00:00 2001 From: Claudia Tejos Date: Fri, 22 Sep 2023 17:41:47 -0300 Subject: [PATCH 1/7] chore(package.json): remove node definition in package.json --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index f986268a4e..b366b6a689 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,5 @@ { "name": "ibm-ai-applications", - "engines": { - "node": "12.x || 14.x || 16.x" - }, "workspaces": { "packages": [ "packages/*" From 9ce176c7ffdd4b4741dac7b57c9de2fe36e86fa9 Mon Sep 17 00:00:00 2001 From: Claudia Tejos Date: Fri, 22 Sep 2023 17:50:44 -0300 Subject: [PATCH 2/7] chore(nvmrc): update node version in nvmrc --- .nvmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nvmrc b/.nvmrc index 19c7bdba7b..209e3ef4b6 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -16 \ No newline at end of file +20 From 977704b975125dab444be8986e0214de2ab64873 Mon Sep 17 00:00:00 2001 From: Claudia Tejos Date: Wed, 4 Oct 2023 09:50:36 -0300 Subject: [PATCH 3/7] fix(node): github action set node version to 20 --- .github/workflows/build.yml | 2 +- .github/workflows/codesandbox.md | 2 +- .github/workflows/format.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/test-app.yml | 2 +- .github/workflows/test.yml | 8 ++++---- packages/react/package.json | 3 --- 8 files changed, 10 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8de2403eb5..2692a78623 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/codesandbox.md b/.github/workflows/codesandbox.md index dcc540c85e..be2fc27947 100644 --- a/.github/workflows/codesandbox.md +++ b/.github/workflows/codesandbox.md @@ -34,7 +34,7 @@ options: --privileged uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index f3427620bb..5d865012dd 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -18,7 +18,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b5005481cd..a4e8fed97c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 92565c91a2..575ddecb28 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/test-app.yml b/.github/workflows/test-app.yml index 3d384e627a..4969eafc7a 100644 --- a/.github/workflows/test-app.yml +++ b/.github/workflows/test-app.yml @@ -29,7 +29,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de6edb9fa4..c867d01d7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 @@ -88,7 +88,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 @@ -161,7 +161,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '16.x' + node-version: '20.x' - name: Download all workflow run artifacts uses: actions/download-artifact@v2 @@ -217,7 +217,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.angular == 'true' with: - node-version: '16.x' + node-version: '20.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/packages/react/package.json b/packages/react/package.json index bffadb677d..3fdedf4a93 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,8 +1,5 @@ { "name": "carbon-addons-iot-react", - "engines": { - "node": "12.x || 14.x || 16.x || 18.x || 20.x" - }, "browser": "es/index.js", "main": "lib/index.js", "module": "es/index.js", From 7717cb91ae0afa632efcdcb570653706bc434f5f Mon Sep 17 00:00:00 2001 From: Claudia Tejos Date: Wed, 4 Oct 2023 15:59:31 -0300 Subject: [PATCH 4/7] fix(cypress): fix in cypress job --- packages/react/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/react/package.json b/packages/react/package.json index 3fdedf4a93..e1e76ce32a 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -49,13 +49,13 @@ "test:engines": "check-node-version --node $(cat ../../.nvmrc) --yarn 1.x", "test:ci": "yarn test --ci --logHeapUsage --coverage", "test:e2e:update": "cypress-image-diff -u", - "test:e2e": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' cypress run-ct --browser=chrome --headed --config video=false,screenshotOnRunFailure=false", - "test:e2e:interactive": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' cypress open-ct --browser=chrome --config video=false,screenshotOnRunFailure=false", - "test:e2e:ci": "cross-env HEIGHT=1680 WIDTH=1680 BABEL_ENV='e2e' NODE_ENV='e2e' cypress run-ct --browser=chrome --config watchForFileChanges=false --record false video=false,screenshotOnRunFailure=false", + "test:e2e": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' NODE_OPTIONS=--openssl-legacy-provider cypress run-ct --browser=chrome --headed --config video=false,screenshotOnRunFailure=false", + "test:e2e:interactive": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' NODE_OPTIONS=--openssl-legacy-provider cypress open-ct --browser=chrome --config video=false,screenshotOnRunFailure=false", + "test:e2e:ci": "cross-env HEIGHT=1680 WIDTH=1680 BABEL_ENV='e2e' NODE_ENV='e2e' NODE_OPTIONS=--openssl-legacy-provider cypress run-ct --browser=chrome --config watchForFileChanges=false --record false video=false,screenshotOnRunFailure=false", "test:e2e:images": "cd ../.. && docker-compose run --no-deps --rm react-visual-regression-tests bash -c 'cd /@ai-apps/packages/react && pwd && yarn cypress install && yarn test:e2e:ci --record=false --config video=false,screenshotOnRunFailure=false'", "test:e2e:docker:build": "cd ../.. && docker-compose up --build", "test:e2e:docker:clean": "docker system prune", - "test:sandbox": "cypress run --spec cypress/integration/codesandbox.spec.js --config supportFile=cypress/support/codesandbox.js,testFiles=*.spec.js,chromeWebSecurity=false", + "test:sandbox": "cross-env NODE_OPTIONS=--openssl-legacy-provider cypress run --spec cypress/integration/codesandbox.spec.js --config supportFile=cypress/support/codesandbox.js,testFiles=*.spec.js,chromeWebSecurity=false", "reports:clean": "rimraf .nyc_output reports", "reports:copy": "mkdir reports || true && cp cypress/coverage/coverage-final.json reports/from-cypress.json && cp jest/coverage/coverage-final.json reports/from-jest.json", "reports:combine": "mkdir .nyc_output || true && npx nyc merge reports && mv coverage.json .nyc_output/out.json && npx nyc report --check-coverage --per-file --report-dir coverage", From 14fae77fd1e0112f1c3f4a4f85ea183bd145f020 Mon Sep 17 00:00:00 2001 From: Claudia Tejos Date: Wed, 4 Oct 2023 16:18:10 -0300 Subject: [PATCH 5/7] chore(build): test storybook of react/angular --- packages/angular/package.json | 4 ++-- packages/react/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/angular/package.json b/packages/angular/package.json index d87ef5dd7f..b195987c2a 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -12,7 +12,7 @@ "test": "ng test --no-watch", "test:watch": "ng test --watch", "test:ci": "yarn test", - "build:storybook": "build-storybook -c .storybook -s .storybook/public -o dist/docs/storybook", + "build:storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider build-storybook -c .storybook -s .storybook/public -o dist/docs/storybook", "ng": "ng", "ng:build": "ngcc && ngcc -s ../../node_modules && ng build", "clean": "rm -rf dist", @@ -105,4 +105,4 @@ "flatpickr": "4.6.1", "gulp-sass": "^5.0.0" } -} +} \ No newline at end of file diff --git a/packages/react/package.json b/packages/react/package.json index e1e76ce32a..37a37b113b 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -24,7 +24,7 @@ "build": "yarn svg-convert && cross-env BABEL_ENV='production' NODE_ENV='production' yarn build:pre && rollup -c && yarn build:post", "build:pre": "yarn test:engines && rimraf lib es umd css scss tmp storybook-static", "build:post": "rimraf tmp", - "build:storybook": "yarn test:engines && NODE_OPTIONS='--max-old-space-size=16384' build-storybook -s public/production", + "build:storybook": " yarn test:engines && cross-env NODE_OPTIONS=\"--max-old-space-size=16384 --openssl-legacy-provider\" build-storybook -s public/production", "format": "prettier --write \"**/*.{scss,css,js,jsx,md,ts}\"", "format:check": "prettier --check \"**/*.{scss,css,js,jsx,md,ts}\" --loglevel warn", "format:diff": "prettier --list-different \"**/*.{scss,css,js,jsx,md,ts}\"", From fb06774a4a1a4837acd67a6575b29264d8c483c7 Mon Sep 17 00:00:00 2001 From: "Claudia R. Girani Tejos" Date: Fri, 13 Oct 2023 13:41:49 -0300 Subject: [PATCH 6/7] chore(node): revert somo nodejs changes --- .github/workflows/build.yml | 2 +- .github/workflows/codesandbox.md | 2 +- .github/workflows/format.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/test-app.yml | 4 ++-- .github/workflows/test.yml | 8 +++---- .nvmrc | 2 +- packages/angular/package.json | 2 +- packages/react/package.json | 11 ++++----- yarn.lock | 39 -------------------------------- 11 files changed, 18 insertions(+), 58 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2692a78623..8de2403eb5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/codesandbox.md b/.github/workflows/codesandbox.md index be2fc27947..dcc540c85e 100644 --- a/.github/workflows/codesandbox.md +++ b/.github/workflows/codesandbox.md @@ -34,7 +34,7 @@ options: --privileged uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 5d865012dd..f3427620bb 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -18,7 +18,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a4e8fed97c..b5005481cd 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 575ddecb28..92565c91a2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.github/workflows/test-app.yml b/.github/workflows/test-app.yml index 4969eafc7a..c17cbc54c0 100644 --- a/.github/workflows/test-app.yml +++ b/.github/workflows/test-app.yml @@ -29,7 +29,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 @@ -82,7 +82,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '20.x' + node-version: '16.x' - name: Run cli command to create test app if: steps.changes.outputs.react == 'true' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c867d01d7e..de6edb9fa4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 @@ -88,7 +88,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 @@ -161,7 +161,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '20.x' + node-version: '16.x' - name: Download all workflow run artifacts uses: actions/download-artifact@v2 @@ -217,7 +217,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.angular == 'true' with: - node-version: '20.x' + node-version: '16.x' - name: Cache dependencies uses: actions/cache@v2 diff --git a/.nvmrc b/.nvmrc index 209e3ef4b6..19c7bdba7b 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20 +16 \ No newline at end of file diff --git a/packages/angular/package.json b/packages/angular/package.json index b195987c2a..9827fd7efd 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -12,7 +12,7 @@ "test": "ng test --no-watch", "test:watch": "ng test --watch", "test:ci": "yarn test", - "build:storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider build-storybook -c .storybook -s .storybook/public -o dist/docs/storybook", + "build:storybook": "build-storybook -c .storybook -s .storybook/public -o dist/docs/storybook", "ng": "ng", "ng:build": "ngcc && ngcc -s ../../node_modules && ng build", "clean": "rm -rf dist", diff --git a/packages/react/package.json b/packages/react/package.json index 37a37b113b..1e86cd2aed 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -24,7 +24,7 @@ "build": "yarn svg-convert && cross-env BABEL_ENV='production' NODE_ENV='production' yarn build:pre && rollup -c && yarn build:post", "build:pre": "yarn test:engines && rimraf lib es umd css scss tmp storybook-static", "build:post": "rimraf tmp", - "build:storybook": " yarn test:engines && cross-env NODE_OPTIONS=\"--max-old-space-size=16384 --openssl-legacy-provider\" build-storybook -s public/production", + "build:storybook": " yarn test:engines && cross-env NODE_OPTIONS=\"--max-old-space-size=16384\" build-storybook -s public/production", "format": "prettier --write \"**/*.{scss,css,js,jsx,md,ts}\"", "format:check": "prettier --check \"**/*.{scss,css,js,jsx,md,ts}\" --loglevel warn", "format:diff": "prettier --list-different \"**/*.{scss,css,js,jsx,md,ts}\"", @@ -49,13 +49,13 @@ "test:engines": "check-node-version --node $(cat ../../.nvmrc) --yarn 1.x", "test:ci": "yarn test --ci --logHeapUsage --coverage", "test:e2e:update": "cypress-image-diff -u", - "test:e2e": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' NODE_OPTIONS=--openssl-legacy-provider cypress run-ct --browser=chrome --headed --config video=false,screenshotOnRunFailure=false", - "test:e2e:interactive": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' NODE_OPTIONS=--openssl-legacy-provider cypress open-ct --browser=chrome --config video=false,screenshotOnRunFailure=false", - "test:e2e:ci": "cross-env HEIGHT=1680 WIDTH=1680 BABEL_ENV='e2e' NODE_ENV='e2e' NODE_OPTIONS=--openssl-legacy-provider cypress run-ct --browser=chrome --config watchForFileChanges=false --record false video=false,screenshotOnRunFailure=false", + "test:e2e": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' cypress run-ct --browser=chrome --headed --config video=false,screenshotOnRunFailure=false", + "test:e2e:interactive": "cross-env BABEL_ENV='e2e' NODE_ENV='e2e' cypress open-ct --browser=chrome --config video=false,screenshotOnRunFailure=false", + "test:e2e:ci": "cross-env HEIGHT=1680 WIDTH=1680 BABEL_ENV='e2e' NODE_ENV='e2e' cypress run-ct --browser=chrome --config watchForFileChanges=false --record false video=false,screenshotOnRunFailure=false", "test:e2e:images": "cd ../.. && docker-compose run --no-deps --rm react-visual-regression-tests bash -c 'cd /@ai-apps/packages/react && pwd && yarn cypress install && yarn test:e2e:ci --record=false --config video=false,screenshotOnRunFailure=false'", "test:e2e:docker:build": "cd ../.. && docker-compose up --build", "test:e2e:docker:clean": "docker system prune", - "test:sandbox": "cross-env NODE_OPTIONS=--openssl-legacy-provider cypress run --spec cypress/integration/codesandbox.spec.js --config supportFile=cypress/support/codesandbox.js,testFiles=*.spec.js,chromeWebSecurity=false", + "test:sandbox": "cypress run --spec cypress/integration/codesandbox.spec.js --config supportFile=cypress/support/codesandbox.js,testFiles=*.spec.js,chromeWebSecurity=false", "reports:clean": "rimraf .nyc_output reports", "reports:copy": "mkdir reports || true && cp cypress/coverage/coverage-final.json reports/from-cypress.json && cp jest/coverage/coverage-final.json reports/from-jest.json", "reports:combine": "mkdir .nyc_output || true && npx nyc merge reports && mv coverage.json .nyc_output/out.json && npx nyc report --check-coverage --per-file --report-dir coverage", @@ -331,7 +331,6 @@ "stylelint": "^10.1.0", "stylelint-config-recommended-scss": "^3.3.0", "stylelint-scss": "^3.10.0", - "weak-napi": "^2.0.1", "webpack": "^4.41.5", "webpack-dev-server": "^3.11.2", "whatwg-fetch": "^3.0.0" diff --git a/yarn.lock b/yarn.lock index 62db9e5c27..f9fcab0264 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15315,18 +15315,6 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" -get-symbol-from-current-process-h@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/get-symbol-from-current-process-h/-/get-symbol-from-current-process-h-1.0.2.tgz#510af52eaef873f7028854c3377f47f7bb200265" - integrity sha512-syloC6fsCt62ELLrr1VKBM1ggOpMdetX9hTrdW77UQdcApPHLmf7CI7OKcN1c9kYuNxKcDe4iJ4FY9sX3aw2xw== - -get-uv-event-loop-napi-h@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/get-uv-event-loop-napi-h/-/get-uv-event-loop-napi-h-1.0.6.tgz#42b0b06b74c3ed21fbac8e7c72845fdb7a200208" - integrity sha512-t5c9VNR84nRoF+eLiz6wFrEp1SE2Acg0wS+Ysa2zF0eROes+LzOfuTaVHxGy8AbS8rq7FHEJzjnCZo1BupwdJg== - dependencies: - get-symbol-from-current-process-h "^1.0.1" - get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" @@ -20374,11 +20362,6 @@ no-case@^2.2.0: dependencies: lower-case "^1.1.1" -node-addon-api@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.0.0.tgz#812446a1001a54f71663bed188314bba07e09247" - integrity sha512-sSHCgWfJ+Lui/u+0msF3oyCgvdkhxDbkCS6Q8uiJquzOimkJBvX6hl5aSSA7DR1XbMpdM8r7phjcF63sF4rkKg== - node-dir@^0.1.10: version "0.1.17" resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" @@ -20418,11 +20401,6 @@ node-forge@^0.10.0: resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== -node-gyp-build@^4.2.1: - version "4.2.2" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.2.tgz#3f44b65adaafd42fb6c3d81afd630e45c847eb66" - integrity sha512-Lqh7mrByWCM8Cf9UPqpeoVBBo5Ugx+RKu885GAzmLBVYjeywScxHXPGLa4JfYNZmcNGwzR0Glu5/9GaQZMFqyA== - node-gyp@^5.0.2: version "5.0.5" resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.0.5.tgz#f6cf1da246eb8c42b097d7cd4d6c3ce23a4163af" @@ -24968,14 +24946,6 @@ set-value@^2.0.0: is-plain-object "^2.0.3" split-string "^3.0.1" -setimmediate-napi@^1.0.3: - version "1.0.6" - resolved "https://registry.yarnpkg.com/setimmediate-napi/-/setimmediate-napi-1.0.6.tgz#43cd797ef25d66eb69c782170ea01898787b8720" - integrity sha512-sdNXN15Av1jPXuSal4Mk4tEAKn0+8lfF9Z50/negaQMrAIO9c1qM0eiCh8fT6gctp0RiCObk+6/Xfn5RMGdZoA== - dependencies: - get-symbol-from-current-process-h "^1.0.1" - get-uv-event-loop-napi-h "^1.0.5" - setimmediate@^1.0.4, setimmediate@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" @@ -27889,15 +27859,6 @@ wcwidth@^1.0.0, wcwidth@^1.0.1: dependencies: defaults "^1.0.3" -weak-napi@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/weak-napi/-/weak-napi-2.0.1.tgz#406c69e4b6924b1b336e6c93e150334bd6e6e43e" - integrity sha512-5K6swEmuZrS8jjtXon9w0Q8qWUSxQYGSp5G4NUjDerNSPSmwBsb9+DXUbr6hAbrDUGFmjeLDRqxv/ma2OfZ1Xw== - dependencies: - node-addon-api "^3.0.0" - node-gyp-build "^4.2.1" - setimmediate-napi "^1.0.3" - web-namespaces@^1.0.0: version "1.1.4" resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec" From 6e85b05fe146f759e9964fa0050f4b271fd3e7df Mon Sep 17 00:00:00 2001 From: "Claudia R. Girani Tejos" Date: Fri, 13 Oct 2023 14:24:00 -0300 Subject: [PATCH 7/7] chore(workflow): update to revert version of node --- .github/workflows/test-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-app.yml b/.github/workflows/test-app.yml index c17cbc54c0..3d384e627a 100644 --- a/.github/workflows/test-app.yml +++ b/.github/workflows/test-app.yml @@ -82,7 +82,7 @@ jobs: uses: actions/setup-node@v1 if: steps.changes.outputs.react == 'true' with: - node-version: '16.x' + node-version: '20.x' - name: Run cli command to create test app if: steps.changes.outputs.react == 'true'