Skip to content

Commit

Permalink
fix(node): 20.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlindquist committed Sep 17, 2024
1 parent 9137537 commit 2ff6a7c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 20.17.0
cache: 'pnpm'

- name: Check node $PATH version
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 20.17.0
cache: 'pnpm'

- name: Build Kit
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 20.17.0
cache: 'pnpm'


Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
registry=https://registry.npmjs.org
install-links=false
save-exact=true
use-node-version=20.16.0
use-node-version=20.17.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
]
},
"volta": {
"node": "20.16.0"
"node": "20.17.0"
},
"config": {
"commitizen": {
Expand Down
2 changes: 1 addition & 1 deletion src/setup/link-kenv-to-kit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ await cli("install", `"${kitPath()}"`)
let defaultPackageJson = {
type: "module",
engines: {
node: "20.16.0"
node: "20.17.0"
},
devDependencies: {
"@johnlindquist/kit": "file:../.kit",
Expand Down
2 changes: 1 addition & 1 deletion src/setup/setup-pnpm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ try {
}
console.log("Configuring pnpm to use local Node.js version...")
try {
await exec("pnpm config set use-node-version 20.16.0 --location project", {
await exec("pnpm config set use-node-version 20.17.0 --location project", {
cwd: kenvPath()
})
console.log("pnpm configuration updated successfully.")
Expand Down

0 comments on commit 2ff6a7c

Please sign in to comment.