Skip to content

Commit

Permalink
fix(node): 20.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlindquist committed Oct 14, 2024
1 parent 4021a17 commit fc83cd0
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.17.0
node-version: 20.18.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.17.0
node-version: 20.18.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.17.0
node-version: 20.18.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.17.0
use-node-version=20.18.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
]
},
"volta": {
"node": "20.17.0"
"node": "20.18.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 @@ -41,7 +41,7 @@ await cli("install", `"${kitPath()}"`)
let defaultPackageJson = {
type: "module",
engines: {
node: "20.17.0",
node: "20.18.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 @@ -63,7 +63,7 @@ try {
)
try {
await exec(
"pnpm config set use-node-version 20.17.0 --location project",
"pnpm config set use-node-version 20.18.0 --location project",
{
cwd: kenvPath(),
}
Expand Down

0 comments on commit fc83cd0

Please sign in to comment.