@ember/app-blueprint 6.10.0-alpha.6 → 6.10.0-alpha.7
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/.github/workflows/ci.yml +2 -0
- package/.release-plan.json +7 -7
- package/CHANGELOG.md +16 -0
- package/files/app/templates/application.gts +1 -1
- package/files/package.json +1 -1
- package/package.json +1 -1
- package/tests/arguments.test.mjs +2 -2
- package/tests/fixtures/tests-js-10/app/templates/application.gjs +1 -1
- package/tests/fixtures/tests-ts-10/app/templates/application.gts +1 -1
package/.github/workflows/ci.yml
CHANGED
package/.release-plan.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.10.0-alpha.
|
|
6
|
-
"newVersion": "6.10.0-alpha.
|
|
4
|
+
"impact": "patch",
|
|
5
|
+
"oldVersion": "6.10.0-alpha.6",
|
|
6
|
+
"newVersion": "6.10.0-alpha.7",
|
|
7
7
|
"tagName": "alpha",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
|
-
"impact": "
|
|
11
|
-
"reason": "Appears in changelog section :
|
|
10
|
+
"impact": "patch",
|
|
11
|
+
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"impact": "patch",
|
|
15
|
-
"reason": "Appears in changelog section :
|
|
15
|
+
"reason": "Appears in changelog section :house: Internal"
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"pkgJSONPath": "./package.json"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"description": "## Release (2025-
|
|
21
|
+
"description": "## Release (2025-12-09)\n\n* @ember/app-blueprint 6.10.0-alpha.7 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#153](https://github.com/ember-cli/ember-app-blueprint/pull/153) Pass extension to WelcomePage component ([@evoactivity](https://github.com/evoactivity))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#159](https://github.com/ember-cli/ember-app-blueprint/pull/159) don't run CI when you only change markdown files ([@mansona](https://github.com/mansona))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Liam Potter ([@evoactivity](https://github.com/evoactivity))\n"
|
|
22
22
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-12-09)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.10.0-alpha.7 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#153](https://github.com/ember-cli/ember-app-blueprint/pull/153) Pass extension to WelcomePage component ([@evoactivity](https://github.com/evoactivity))
|
|
10
|
+
|
|
11
|
+
#### :house: Internal
|
|
12
|
+
* `@ember/app-blueprint`
|
|
13
|
+
* [#159](https://github.com/ember-cli/ember-app-blueprint/pull/159) don't run CI when you only change markdown files ([@mansona](https://github.com/mansona))
|
|
14
|
+
|
|
15
|
+
#### Committers: 2
|
|
16
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
17
|
+
- Liam Potter ([@evoactivity](https://github.com/evoactivity))
|
|
18
|
+
|
|
3
19
|
## Release (2025-11-26)
|
|
4
20
|
|
|
5
21
|
* @ember/app-blueprint 6.10.0-alpha.6 (minor)
|
|
@@ -7,7 +7,7 @@ import { pageTitle } from 'ember-page-title';
|
|
|
7
7
|
{{outlet}}
|
|
8
8
|
|
|
9
9
|
{{! The following component displays Ember's default welcome message. }}
|
|
10
|
-
<WelcomePage />
|
|
10
|
+
<WelcomePage @extension="<% if (typescript) {%>gts<% } else { %>gjs<% } %>" />
|
|
11
11
|
{{! Feel free to remove this! }}<% } else { %>
|
|
12
12
|
<h2 id="title">Welcome to Ember</h2>
|
|
13
13
|
|
package/files/package.json
CHANGED
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"ember-resolver": "^13.1.1",
|
|
75
75
|
"ember-source": "~6.10.0-alpha.1",
|
|
76
76
|
"ember-template-lint": "^7.9.3<% if (welcome) { %>",
|
|
77
|
-
"ember-welcome-page": "^
|
|
77
|
+
"ember-welcome-page": "^8.0.4<% } %>",
|
|
78
78
|
"eslint": "^9.37.0",
|
|
79
79
|
"eslint-config-prettier": "^10.1.8",
|
|
80
80
|
"eslint-plugin-ember": "^12.7.4",
|
package/package.json
CHANGED
package/tests/arguments.test.mjs
CHANGED
|
@@ -154,7 +154,7 @@ describe('Blueprint Arguments', function () {
|
|
|
154
154
|
expect(parse(files['package.json']).devDependencies['ember-welcome-page'])
|
|
155
155
|
.to.not.be.undefined;
|
|
156
156
|
expect(files.app.templates['application.gjs']).to.contain(
|
|
157
|
-
'<WelcomePage />',
|
|
157
|
+
'<WelcomePage @extension="gjs" />',
|
|
158
158
|
);
|
|
159
159
|
});
|
|
160
160
|
|
|
@@ -164,7 +164,7 @@ describe('Blueprint Arguments', function () {
|
|
|
164
164
|
expect(parse(files['package.json']).devDependencies['ember-welcome-page'])
|
|
165
165
|
.to.be.undefined;
|
|
166
166
|
expect(files.app.templates['application.gjs']).not.to.contain(
|
|
167
|
-
'<WelcomePage />',
|
|
167
|
+
'<WelcomePage @extension="gjs" />',
|
|
168
168
|
);
|
|
169
169
|
});
|
|
170
170
|
});
|
|
@@ -8,7 +8,7 @@ import { LinkTo } from '@ember/routing';
|
|
|
8
8
|
{{outlet}}
|
|
9
9
|
|
|
10
10
|
{{! The following component displays Ember's default welcome message. }}
|
|
11
|
-
<WelcomePage />
|
|
11
|
+
<WelcomePage @extension="gjs" />
|
|
12
12
|
{{! Feel free to remove this! }}
|
|
13
13
|
|
|
14
14
|
<LinkTo @route="fancy" data-test-a>Fancy</LinkTo>
|
|
@@ -8,7 +8,7 @@ import { LinkTo } from '@ember/routing';
|
|
|
8
8
|
{{outlet}}
|
|
9
9
|
|
|
10
10
|
{{! The following component displays Ember's default welcome message. }}
|
|
11
|
-
<WelcomePage />
|
|
11
|
+
<WelcomePage @extension="gts" />
|
|
12
12
|
{{! Feel free to remove this! }}
|
|
13
13
|
|
|
14
14
|
<LinkTo @route="fancy" data-test-a>Fancy</LinkTo>
|