Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/tasty-lemons-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-effect-app': patch
---

update the Node.js version to 24.5.0
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
node-version:
description: The version of Node.js to install
required: true
default: 20.14.0
default: 24.5.0

runs:
using: composite
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 20.14.0
node-version: 24.5.0
- name: Install dependencies
run: pnpm install
- run: pnpm lint
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 20.14.0
node-version: 24.5.0
- name: Install dependencies
run: pnpm install
- run: pnpm lint
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Fs from "node:fs"
import Package from "../packages/create-effect-app/package.json" assert { type: "json" }
import Package from "../packages/create-effect-app/package.json" with { type: "json" }
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updates to the import with standard for modern Node versions.


const tpl = Fs.readFileSync("./scripts/version.template.txt").toString("utf8")

Expand Down
2 changes: 1 addition & 1 deletion templates/monorepo/.github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
node-version:
description: The version of Node.js to install
required: true
default: 20.14.0
default: 24.5.0

runs:
using: composite
Expand Down