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
4 changes: 2 additions & 2 deletions .github/actions/setup-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ runs:
using: composite

steps:
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: pnpm/action-setup@v5
- uses: actions/setup-node@v6
with:
cache: pnpm
node-version: ${{inputs.node-version}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-environment
- name: Lint
run: pnpm lint
Expand All @@ -19,7 +19,7 @@ jobs:
name: "Test (Node: ${{matrix.node-version}}, OS: ${{matrix.os}})"
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-environment
with:
node-version: ${{matrix.node-version}}
Expand All @@ -41,7 +41,7 @@ jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-environment
- name: Build gember
run: pnpm build
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/plan-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
command: ${{ steps.check-release.outputs.command }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 2
ref: "main"
Expand All @@ -45,14 +45,14 @@ jobs:
if: ((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.is-this-a-release.outputs.command != 'release') || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
# We need to download lots of history so that
# github-changelog can discover what's changed since the last release
with:
fetch-depth: 0
ref: "main"
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: pnpm/action-setup@v5
- uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
env:
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}

- uses: peter-evans/create-pull-request@v7
- uses: peter-evans/create-pull-request@v8
with:
commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
labels: "internal"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
attestations: write

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v5
- uses: actions/setup-node@v6
with:
node-version: 22
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

Generators for Ember apps and addons.

## Compatibility

- Node.js v18 or above

## Installation

```shell
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,37 +38,37 @@
"dependencies": {
"@napi-rs/clipboard": "^1.1.3",
"change-case": "^5.4.4",
"citty": "^0.1.6",
"citty": "^0.2.1",
"consola": "^3.4.2",
"find-up": "^7.0.0",
"fs-extra": "^11.3.2",
"fs-extra": "^11.3.4",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@eslint/js": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^3.2.4",
"combinations": "^1.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-plugin-n": "^17.23.1",
"execa": "^9.6.0",
"prettier": "^3.6.2",
"eslint": "^10.1.0",
"eslint-plugin-n": "^17.24.0",
"execa": "^9.6.1",
"prettier": "^3.8.1",
"recursive-copy": "^2.0.14",
"release-plan": "^0.17.2",
"type-fest": "^5.2.0",
"release-plan": "^0.17.4",
"type-fest": "^5.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"typescript-eslint": "^8.57.1",
"uuid": "^13.0.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.13.2",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">= 18"
},
"volta": {
"node": "22.19.0",
"pnpm": "10.15.1"
"node": "24.14.0",
"pnpm": "10.32.1"
}
}
Loading