Skip to content

Commit

Permalink
chore(node): upgrade required Node version to 18
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node bump from v14 to v18
  • Loading branch information
nlebrun-spotify committed May 16, 2023
1 parent ef060c7 commit 9528841
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- name: yarn install
run: yarn install --frozen-lockfile
- name: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- name: yarn install
run: yarn install --frozen-lockfile
- name: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- name: yarn install
run: yarn install --frozen-lockfile
- name: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [14, 16]
node-version: [18]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion packages/create-web-scripts-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/web-scripts-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}
2 changes: 1 addition & 1 deletion packages/web-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@
"access": "public"
},
"engines": {
"node": ">=14.17.0"
"node": ">=18"
}
}

0 comments on commit 9528841

Please sign in to comment.