-
Notifications
You must be signed in to change notification settings - Fork 940
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infra(node) - upgrade to node v22 (#8900)
- Loading branch information
1 parent
f943b42
commit 21a0d49
Showing
5 changed files
with
101 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG BASE_IMAGE=node:20.11.1 | ||
ARG BASE_IMAGE=node:22.11.0 | ||
FROM $BASE_IMAGE | ||
USER root | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -528,10 +528,14 @@ | |
"signal-exit@4": "^4.0.2", | ||
"@types/react": "^17.0.67", | ||
"@types/react-dom": "^17.0.21", | ||
"[email protected]": "7.1.3" | ||
"[email protected]": "7.1.3", | ||
// See more info here - | ||
// https://github.com/garycourt/uri-js/pull/95 | ||
// https://github.com/garycourt/uri-js/issues/97 | ||
"uri-js": "npm:uri-js-replace" | ||
}, | ||
"rootComponents": true, | ||
"nodeVersion": "20.11.1", | ||
"nodeVersion": "22.11.0", | ||
"engineStrict": true, | ||
// This is a temporary workaround to fix "bit compile" on macOS and Windows. | ||
// "bit compile" breaks node_modules when hard links are used. | ||
|
@@ -616,7 +620,7 @@ | |
"packageJson": { | ||
"name": "@teambit/{name}", // @teambit/discovery.ui.sidebar | ||
"bvm": { | ||
"node": "20.11.1" | ||
"node": "22.11.0" | ||
}, | ||
"bin": { | ||
"bbit": "bin/bit" | ||
|