Skip to content

Commit 9eb7e5f

Browse files
committed
chore(deps): update dependencies
1 parent af8ae9c commit 9eb7e5f

9 files changed

+1323
-1485
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/blueprints/*/files/
33

44
# compiled output
5+
/declarations/
56
/dist/
67

78
# misc

.github/workflows/ci.yml

+17-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v4
22-
- uses: wyvox/action-setup-pnpm@v3
22+
- uses: pnpm/action-setup@v4
23+
- name: Install Node
24+
uses: actions/setup-node@v4
2325
with:
2426
node-version: 20
27+
cache: pnpm
28+
- name: Install Dependencies
29+
run: pnpm install --frozen-lockfile
2530
- name: Lint
2631
run: pnpm lint
2732
- name: Run Tests
@@ -34,10 +39,13 @@ jobs:
3439

3540
steps:
3641
- uses: actions/checkout@v4
37-
- uses: wyvox/action-setup-pnpm@v3
42+
- uses: pnpm/action-setup@v4
43+
- uses: actions/setup-node@v4
3844
with:
3945
node-version: 20
40-
args: "--no-lockfile"
46+
cache: pnpm
47+
- name: Install Dependencies
48+
run: pnpm install --no-lockfile
4149
- name: Run Tests
4250
run: pnpm test:ember
4351

@@ -61,8 +69,13 @@ jobs:
6169

6270
steps:
6371
- uses: actions/checkout@v4
64-
- uses: wyvox/action-setup-pnpm@v3
72+
- uses: pnpm/action-setup@v4
73+
- name: Install Node
74+
uses: actions/setup-node@v4
6575
with:
6676
node-version: 20
77+
cache: pnpm
78+
- name: Install Dependencies
79+
run: pnpm install --frozen-lockfile
6780
- name: Run Tests
6881
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}

.github/workflows/release.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4
11-
with:
12-
fetch-depth: 0
13-
persist-credentials: false
14-
- uses: wyvox/action-setup-pnpm@v3
11+
- uses: pnpm/action-setup@v4
12+
- name: Install Node
13+
uses: actions/setup-node@v4
1514
with:
1615
node-version: 20
17-
16+
cache: pnpm
1817
- name: Release on NPM
1918
run: pnpm semantic-release
2019
env:

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
/ember-cli-build.js
2424
/testem.js
2525
/tests/
26+
/tsconfig.declarations.json
27+
/tsconfig.json
2628
/yarn-error.log
2729
/yarn.lock
2830
.gitkeep

CONTRIBUTING.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22

33
## Installation
44

5-
* `git clone <repository-url>`
6-
* `cd ember-alexandria`
7-
* `pnpm install`
5+
- `git clone <repository-url>`
6+
- `cd ember-alexandria`
7+
- `pnpm install`
88

99
## Linting
1010

11-
* `pnpm lint`
12-
* `pnpm lint:fix`
11+
- `pnpm lint`
12+
- `pnpm lint:fix`
1313

1414
## Running tests
1515

16-
* `pnpm test` – Runs the test suite on the current Ember version
17-
* `pnpm test:ember --server` – Runs the test suite in "watch mode"
18-
* `pnpm test:ember-compatibility` – Runs the test suite against multiple Ember versions
16+
- `pnpm test` – Runs the test suite on the current Ember version
17+
- `pnpm test:ember --server` – Runs the test suite in "watch mode"
18+
- `pnpm test:ember-compatibility` – Runs the test suite against multiple Ember versions
1919

2020
## Running the dummy application
2121

22-
* `pnpm start` (with mirage backend) or `pnpm start-proxy` (with real backend running on [http://localhost:8000](http://localhost:8000))
23-
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).
22+
- `pnpm start` (with mirage backend) or `pnpm start-proxy` (with real backend running on [http://localhost:8000](http://localhost:8000))
23+
- Visit the dummy application at [http://localhost:4200](http://localhost:4200).
2424

2525
For more information on using ember-cli, visit [https://cli.emberjs.com/release/](https://cli.emberjs.com/release/).

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
},
1919
"scripts": {
2020
"build": "ember build --environment=production",
21-
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
21+
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
2222
"lint:css": "stylelint \"**/*.scss\"",
23-
"lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
24-
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
23+
"lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
24+
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"",
2525
"lint:hbs": "ember-template-lint .",
2626
"lint:hbs:fix": "ember-template-lint . --fix",
2727
"lint:js": "eslint .",
2828
"lint:js:fix": "eslint . --fix",
2929
"start": "ember serve",
3030
"start-proxy": "ember serve --proxy=http://localhost:8000",
31-
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
31+
"test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\"",
3232
"test:ember": "ember test",
3333
"test:ember-compatibility": "ember try:each"
3434
},
@@ -37,14 +37,14 @@
3737
"@ember/legacy-built-in-components": "^0.5.0",
3838
"@ember/optional-features": "^2.1.0",
3939
"@ember/render-modifiers": "^2.1.0",
40-
"@embroider/macros": "^1.16.4",
40+
"@embroider/macros": "^1.16.5",
4141
"@fortawesome/ember-fontawesome": "^2.0.0",
4242
"@fortawesome/free-regular-svg-icons": "^6.5.2",
4343
"@fortawesome/free-solid-svg-icons": "^6.5.2",
4444
"@glimmer/component": "^1.1.2",
4545
"@glimmer/tracking": "^1.1.2",
4646
"animate-css-grid": "^1.5.1",
47-
"ember-auto-import": "^2.7.3",
47+
"ember-auto-import": "^2.7.4",
4848
"ember-cli-babel": "^8.2.0",
4949
"ember-cli-htmlbars": "^6.3.0",
5050
"ember-cli-showdown": "^9.0.1",
@@ -80,7 +80,7 @@
8080
"@fortawesome/fontawesome-svg-core": "6.5.2",
8181
"broccoli-asset-rev": "3.0.0",
8282
"concurrently": "8.2.2",
83-
"ember-cli": "5.8.1",
83+
"ember-cli": "5.9.0",
8484
"ember-cli-clean-css": "3.0.0",
8585
"ember-cli-dependency-checker": "3.3.2",
8686
"ember-cli-inject-live-reload": "2.1.0",
@@ -94,7 +94,7 @@
9494
"ember-resolver": "12.0.1",
9595
"ember-simple-auth": "6.0.0",
9696
"ember-sinon-qunit": "7.4.0",
97-
"ember-source": "5.8.0",
97+
"ember-source": "5.9.0",
9898
"ember-source-channel-url": "3.0.0",
9999
"ember-template-lint": "6.0.0",
100100
"ember-template-lint-plugin-prettier": "5.0.0",

0 commit comments

Comments
 (0)