This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
Upgrading to Node.js 20 #1293
Merged
Merged
Upgrading to Node.js 20 #1293
Changes from 6 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b4643ff
refactor: upgrade to node 20
giulianok 5871659
chore: merge conflicts
giulianok 9f6d21e
refactor: upgrade to node 20
giulianok 6f75cf8
Merge branch 'main' into refactor/upgrade-to-node-20
giulianok cd400de
refactor(node): changed author
giulianok 1c4896a
Merge branch 'refactor/upgrade-to-node-20' of https://github.com/amer…
giulianok c181baf
refactor(node): reverted sample module pkg change
giulianok 8f78975
refactor(node): correct node version in pkg lock
giulianok acb9aef
Merge branch 'main' into refactor/upgrade-to-node-20
giulianok fcb68e4
Merge branch 'main' into refactor/upgrade-to-node-20
giulianok b1f6e46
Merge branch 'main' of https://github.com/americanexpress/one-app int…
giulianok cbba206
chore: upgraded to latest node 20
giulianok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18.17.1 | ||
20.10.0 |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
"description": "One Amex SPA technology stack.", | ||
"main": "index.js", | ||
"engines": { | ||
"node": ">=18 <=20", | ||
"npm": ">=8" | ||
Comment on lines
-7
to
-8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this needs to still support node 18 |
||
"node": ">=20", | ||
"npm": ">=10" | ||
}, | ||
"scripts": { | ||
"preinstall": "npx check-engines@1", | ||
|
@@ -55,18 +55,7 @@ | |
"bugs": { | ||
"url": "https://github.com/americanexpress/one-app/issues" | ||
}, | ||
"contributors": [ | ||
"Andres Escobar <Andres.Escobar@aexp.com> (https://github.com/anescobar1991)", | ||
"James Singleton <James.Singleton1@aexp.com> (https://github.com/JamesSingleton)", | ||
"Jamie King <Jamie.King@aexp.com> (https://github.com/10xLaCroixDrinker)", | ||
"Jonathan Adshead <Jonathan.Adshead@aexp.com> (https://github.com/JAdshead)", | ||
"Michael Tobia <Michael.M.Tobia@aexp.com> (https://github.com/Francois-Esquire)", | ||
"Michael Tomcal <Michael.A.Tomcal@aexp.com> (https://github.com/mtomcal)", | ||
"Stephanie Coates <Stephanie.Coates1@aexp.com> (https://github.com/stephaniecoates)", | ||
"Nelly Kiboi <Nelly.J.Kiboi@aexp.com> (https://github.com/nellyk)", | ||
"Nickolas Oliver <nickolas.oliver@aexp.com> (https://github.com/PixnBits)", | ||
"Ruben Casas <ruben.casas@aexp.com> (https://github.com/infoxicator)" | ||
], | ||
"author": "One App Team <oneamex.careers@aexp.com>", | ||
"license": "Apache-2.0", | ||
"keywords": [ | ||
"spa", | ||
|
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 VERSION=lts | ||
ARG VERSION=20 | ||
|
||
FROM node:$VERSION as builder | ||
MAINTAINER One App Team | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dropping support for 18 is a breaking change.