Skip to content

Commit 7f4ae45

Browse files
ember-cli-update
1 parent 00c065f commit 7f4ae45

File tree

10 files changed

+332
-368
lines changed

10 files changed

+332
-368
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
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-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ jobs:
9999
- ember-lts-4.4
100100
- ember-lts-4.8
101101
- ember-lts-4.12
102+
- ember-lts-5.4
102103
- ember-release
103104
- ember-beta
104105
- ember-canary

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
/ember-cli-build.js
2323
/testem.js
2424
/tests/
25+
/tsconfig.declarations.json
26+
/tsconfig.json
2527
/yarn-error.log
2628
/yarn.lock
2729
.gitkeep

CONTRIBUTING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22

33
## Installation
44

5-
* `git clone <repository-url>`
6-
* `cd ember-cli-addon-docs`
7-
* `yarn install`
5+
- `git clone <repository-url>`
6+
- `cd ember-cli-addon-docs`
7+
- `yarn install`
88

99
## Linting
1010

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

1414
## Running tests
1515

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

2020
## Running the dummy application
2121

22-
* `yarn start`
23-
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).
22+
- `yarn start`
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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
"scripts": {
1717
"build": "ember build --environment=production",
1818
"deploy": "ember deploy production",
19-
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
19+
"lint": "concurrently \"yarn:lint:*(!fix)\" --names \"lint:\"",
2020
"lint:css": "stylelint \"**/*.css\"",
21-
"lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
22-
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
21+
"lint:css:fix": "concurrently \"yarn:lint:css -- --fix\"",
22+
"lint:fix": "concurrently \"yarn:lint:*:fix\" --names \"fix:\"",
2323
"lint:hbs": "ember-template-lint .",
2424
"lint:hbs:fix": "ember-template-lint . --fix",
2525
"lint:js": "eslint . --cache",
2626
"prepare": "./scripts/link-them.sh",
2727
"lint:js:fix": "eslint . --fix",
2828
"start": "ember serve",
29-
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
29+
"test": "concurrently \"yarn:lint\" \"yarn:test:*\" --names \"lint,test:\"",
3030
"test:ember": "ember test --test-port=0",
3131
"test:node": "mocha tests-node --recursive",
3232
"test:test-apps": "cd test-apps/new-addon && yarn test"
@@ -49,7 +49,7 @@
4949
"broccoli-source": "^3.0.0",
5050
"broccoli-stew": "^3.0.0",
5151
"chalk": "4.1.2",
52-
"ember-auto-import": "^2.7.0",
52+
"ember-auto-import": "^2.7.4",
5353
"ember-cli-autoprefixer": "^2.0.0",
5454
"ember-cli-babel": "^8.2.0",
5555
"ember-cli-clipboard": "^1.1.0",
@@ -104,9 +104,9 @@
104104
"@babel/eslint-parser": "^7.25.1",
105105
"@babel/plugin-proposal-decorators": "^7.24.7",
106106
"@babel/preset-env": "^7.25.4",
107-
"@ember/optional-features": "^2.0.0",
107+
"@ember/optional-features": "^2.1.0",
108108
"@ember/string": "^3.1.1",
109-
"@ember/test-helpers": "^3.2.1",
109+
"@ember/test-helpers": "^3.3.1",
110110
"@embroider/test-setup": "^3.0.3",
111111
"@fullhuman/postcss-purgecss": "^4.0.3",
112112
"@release-it-plugins/lerna-changelog": "^6.0.0",
@@ -115,7 +115,7 @@
115115
"common-tags": "^1.8.2",
116116
"concurrently": "^8.2.2",
117117
"ember-classy-page-object": "0.8.0-beta.2",
118-
"ember-cli": "~5.5.0",
118+
"ember-cli": "~5.11.0",
119119
"ember-cli-addon-docs-yuidoc": "^1.0.0",
120120
"ember-cli-blueprint-test-helpers": "^0.19.2",
121121
"ember-cli-clean-css": "^3.0.0",
@@ -129,24 +129,24 @@
129129
"ember-cli-terser": "^4.0.2",
130130
"ember-data": "~5.3.0",
131131
"ember-load-initializers": "^2.1.2",
132-
"ember-qunit": "^8.0.2",
132+
"ember-qunit": "^8.1.0",
133133
"ember-resolver": "^11.0.1",
134-
"ember-source": "~5.5.0",
134+
"ember-source": "~5.11.0",
135135
"ember-source-channel-url": "^3.0.0",
136136
"ember-template-lint": "^5.13.0",
137137
"ember-test-selectors": "^6.0.0",
138138
"ember-try": "^3.0.0",
139-
"eslint": "^8.56.0",
139+
"eslint": "^8.57.0",
140140
"eslint-config-prettier": "^9.1.0",
141141
"eslint-plugin-ember": "^11.12.0",
142-
"eslint-plugin-n": "^16.5.0",
143-
"eslint-plugin-prettier": "^5.1.0",
144-
"eslint-plugin-qunit": "^8.0.1",
142+
"eslint-plugin-n": "^16.6.2",
143+
"eslint-plugin-prettier": "^5.2.1",
144+
"eslint-plugin-qunit": "^8.1.1",
145145
"loader.js": "^4.7.0",
146146
"miragejs": "^0.1.48",
147147
"mocha": "^10.1.0",
148-
"prettier": "^3.1.1",
149-
"qunit": "^2.20.0",
148+
"prettier": "^3.3.3",
149+
"qunit": "^2.22.0",
150150
"qunit-dom": "^3.0.0",
151151
"release-it": "^16.3.0",
152152
"stylelint": "^15.11.0",

tests/dummy/config/ember-cli-update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": [
44
{
55
"name": "ember-cli",
6-
"version": "5.5.0",
6+
"version": "5.11.0",
77
"blueprints": [
88
{
99
"name": "addon",

tests/dummy/config/ember-try.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ module.exports = async function () {
1111
name: 'ember-lts-4.4',
1212
npm: {
1313
devDependencies: {
14+
'ember-data': '~4.11.3',
1415
'ember-source': '~4.4.0',
1516
},
1617
},
@@ -19,6 +20,7 @@ module.exports = async function () {
1920
name: 'ember-lts-4.8',
2021
npm: {
2122
devDependencies: {
23+
'ember-data': '~4.11.3',
2224
'ember-source': '~4.8.0',
2325
},
2426
},
@@ -36,7 +38,7 @@ module.exports = async function () {
3638
name: 'ember-lts-5.4',
3739
npm: {
3840
devDependencies: {
39-
'ember-data': '~5.3.0',
41+
'ember-data': '~5.3.8',
4042
'ember-source': '~5.4.0',
4143
},
4244
},

tests/helpers/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function setupApplicationTest(hooks, options) {
2323
// This is also a good place to call test setup functions coming
2424
// from other addons:
2525
//
26-
// setupIntl(hooks); // ember-intl
26+
// setupIntl(hooks, 'en-us'); // ember-intl
2727
// setupMirage(hooks); // ember-cli-mirage
2828
}
2929

tsconfig.declarations.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)