ember-cli 5.10.0 → 5.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## v5.11.0
|
|
4
|
+
|
|
5
|
+
#### Blueprint Changes
|
|
6
|
+
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.10.0...v5.11.0)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.10.0...v5.11.0)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#10474](https://github.com/ember-cli/ember-cli/pull/10474) Improve dx when WelcomePage is present [@ef4](https://github.com/ef4)
|
|
13
|
+
- [#10475](https://github.com/ember-cli/ember-cli/pull/10475) Document WRITE_FIXTURES [@kategengler](https://github.com/kategengler)
|
|
14
|
+
- [#10476](https://github.com/ember-cli/ember-cli/pull/10476) Bump content-tag to v2 [@SergeAstapov](https://github.com/SergeAstapov)
|
|
15
|
+
|
|
16
|
+
Thank you to all who took the time to contribute!
|
|
17
|
+
|
|
3
18
|
## v5.10.0
|
|
4
19
|
|
|
5
20
|
#### Blueprint Changes
|
package/CONTRIBUTING.md
CHANGED
|
@@ -48,6 +48,13 @@ ember-cli is using [Mocha](https://mochajs.org/) for its internal tests. If
|
|
|
48
48
|
you want to run a specific subset of tests have a look at their
|
|
49
49
|
[documentation](https://mochajs.org/#exclusive-tests).
|
|
50
50
|
|
|
51
|
+
## Update fixtures
|
|
52
|
+
|
|
53
|
+
### `ember new`
|
|
54
|
+
|
|
55
|
+
To update fixtures with `ember new`, run the tests with `WRITE_FIXTURES=true`.
|
|
56
|
+
|
|
57
|
+
To update `ember help` fixtures, run the tests with `WRITE_HELP_FIXTURES=true`.
|
|
51
58
|
|
|
52
59
|
## Build the documentation
|
|
53
60
|
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{{page-title "<%= namespace %>"}}
|
|
2
|
+
<% if (welcome) { %>
|
|
3
|
+
{{outlet}}
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
{{! The following component displays Ember's default welcome message. }}
|
|
4
6
|
<WelcomePage />
|
|
5
|
-
{{! Feel free to remove this! }}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
{{outlet}}
|
|
7
|
+
{{! Feel free to remove this! }}<% } else { %>
|
|
8
|
+
<h2 id="title">Welcome to Ember</h2>
|
|
9
|
+
|
|
10
|
+
{{outlet}}<% } %>
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"test:ember": "ember test"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@babel/core": "^7.
|
|
30
|
-
"<% if (!typescript) { %>@babel/eslint-parser": "^7.
|
|
29
|
+
"@babel/core": "^7.25.2",
|
|
30
|
+
"<% if (!typescript) { %>@babel/eslint-parser": "^7.25.1",
|
|
31
31
|
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
32
32
|
"<% } %>@ember/optional-features": "^2.1.0",
|
|
33
33
|
"@ember/string": "^3.1.1",
|
|
34
|
-
"@ember/test-helpers": "^3.3.
|
|
35
|
-
"@embroider/compat": "^3.
|
|
34
|
+
"@ember/test-helpers": "^3.3.1<% if (embroider) { %>",
|
|
35
|
+
"@embroider/compat": "^3.6.0",
|
|
36
36
|
"@embroider/core": "^3.4.14",
|
|
37
37
|
"@embroider/webpack": "^3.2.3<% } %>",
|
|
38
38
|
"@glimmer/component": "^1.1.2",
|
|
@@ -89,25 +89,25 @@
|
|
|
89
89
|
"ember-page-title": "^8.2.3",
|
|
90
90
|
"ember-qunit": "^8.1.0",
|
|
91
91
|
"ember-resolver": "^11.0.1",
|
|
92
|
-
"ember-source": "~5.
|
|
92
|
+
"ember-source": "~5.11.0",
|
|
93
93
|
"ember-template-lint": "^5.13.0<% if (welcome) { %>",
|
|
94
94
|
"ember-welcome-page": "^7.0.2<% } %>",
|
|
95
95
|
"eslint": "^8.57.0",
|
|
96
96
|
"eslint-config-prettier": "^9.1.0",
|
|
97
97
|
"eslint-plugin-ember": "^11.12.0",
|
|
98
98
|
"eslint-plugin-n": "^16.6.2",
|
|
99
|
-
"eslint-plugin-prettier": "^5.1
|
|
99
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
100
100
|
"eslint-plugin-qunit": "^8.1.1",
|
|
101
101
|
"loader.js": "^4.7.0",
|
|
102
|
-
"prettier": "^3.3.
|
|
103
|
-
"qunit": "^2.
|
|
102
|
+
"prettier": "^3.3.3",
|
|
103
|
+
"qunit": "^2.22.0",
|
|
104
104
|
"qunit-dom": "^2.0.0",
|
|
105
105
|
"stylelint": "^15.11.0",
|
|
106
106
|
"stylelint-config-standard": "^34.0.0",
|
|
107
107
|
"stylelint-prettier": "^4.1.0",
|
|
108
108
|
"tracked-built-ins": "^3.3.0<% if (typescript) { %>",
|
|
109
|
-
"typescript": "^5.5.
|
|
110
|
-
"webpack": "^5.
|
|
109
|
+
"typescript": "^5.5.4<% } %>",
|
|
110
|
+
"webpack": "^5.93.0"
|
|
111
111
|
},
|
|
112
112
|
"engines": {
|
|
113
113
|
"node": ">= 18"
|
package/docs/build/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
|
|
4
4
|
"name": "ember-cli",
|
|
5
5
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
6
|
-
"version": "5.
|
|
6
|
+
"version": "5.11.0-release-2db0b911a0"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.11.0",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"compression": "^1.7.4",
|
|
60
60
|
"configstore": "^5.0.1",
|
|
61
61
|
"console-ui": "^3.1.2",
|
|
62
|
-
"content-tag": "^
|
|
62
|
+
"content-tag": "^2.0.1",
|
|
63
63
|
"core-object": "^3.1.5",
|
|
64
64
|
"dag-map": "^2.0.2",
|
|
65
65
|
"diff": "^5.1.0",
|