@ember/app-blueprint 0.5.0 → 0.6.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.
@@ -2,8 +2,8 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "minor",
5
- "oldVersion": "0.4.0",
6
- "newVersion": "0.5.0",
5
+ "oldVersion": "0.5.0",
6
+ "newVersion": "0.6.0",
7
7
  "tagName": "latest",
8
8
  "constraints": [
9
9
  {
@@ -14,5 +14,5 @@
14
14
  "pkgJSONPath": "./package.json"
15
15
  }
16
16
  },
17
- "description": "## Release (2025-05-22)\n\n* @ember/app-blueprint 0.5.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#24](https://github.com/ember-cli/ember-app-blueprint/pull/24) run update-blueprint-deps --latest ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
17
+ "description": "## Release (2025-06-05)\n\n* @ember/app-blueprint 0.6.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#28](https://github.com/ember-cli/ember-app-blueprint/pull/28) make sure we always use strict generators ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
18
18
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2025-06-05)
4
+
5
+ * @ember/app-blueprint 0.6.0 (minor)
6
+
7
+ #### :rocket: Enhancement
8
+ * `@ember/app-blueprint`
9
+ * [#28](https://github.com/ember-cli/ember-app-blueprint/pull/28) make sure we always use strict generators ([@mansona](https://github.com/mansona))
10
+
11
+ #### Committers: 1
12
+ - Chris Manson ([@mansona](https://github.com/mansona))
13
+
3
14
  ## Release (2025-05-22)
4
15
 
5
16
  * @ember/app-blueprint 0.5.0 (minor)
package/files/.ember-cli CHANGED
@@ -3,5 +3,17 @@
3
3
  Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
4
4
  rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
5
5
  */
6
- "isTypeScriptProject": <%= typescript ? 'true' : 'false' %>
6
+ "isTypeScriptProject": <%= typescript ? 'true' : 'false' %>,
7
+
8
+ /**
9
+ Setting `componentAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
10
+ or GTS files for the component and the component rendering test. "loose" is the default.
11
+ */
12
+ "componentAuthoringFormat": "strict",
13
+
14
+ /**
15
+ Setting `routeAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
16
+ or GTS templates for routes. "loose" is the default
17
+ */
18
+ "routeAuthoringFormat": "strict"
7
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"