@ember/app-blueprint 6.8.0-beta.4 → 6.8.0-beta.5
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/.release-plan.json +6 -6
- package/CHANGELOG.md +11 -0
- package/files/app/app.ts +2 -0
- package/files/package.json +1 -0
- package/package.json +1 -1
package/.release-plan.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.8.0-beta.
|
|
6
|
-
"newVersion": "6.8.0-beta.
|
|
4
|
+
"impact": "minor",
|
|
5
|
+
"oldVersion": "6.8.0-beta.4",
|
|
6
|
+
"newVersion": "6.8.0-beta.5",
|
|
7
7
|
"tagName": "beta",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
|
-
"impact": "
|
|
11
|
-
"reason": "Appears in changelog section :
|
|
10
|
+
"impact": "minor",
|
|
11
|
+
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
12
|
}
|
|
13
13
|
],
|
|
14
14
|
"pkgJSONPath": "./package.json"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"description": "## Release (2025-10-06)\n\n* @ember/app-blueprint 6.8.0-beta.
|
|
17
|
+
"description": "## Release (2025-10-06)\n\n* @ember/app-blueprint 6.8.0-beta.5 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#91](https://github.com/ember-cli/ember-app-blueprint/pull/91) [bugfix beta] add legacy inspector support ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
|
|
18
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## Release (2025-10-06)
|
|
4
4
|
|
|
5
|
+
* @ember/app-blueprint 6.8.0-beta.5 (minor)
|
|
6
|
+
|
|
7
|
+
#### :rocket: Enhancement
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#91](https://github.com/ember-cli/ember-app-blueprint/pull/91) [bugfix beta] add legacy inspector support ([@mansona](https://github.com/mansona))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
13
|
+
|
|
14
|
+
## Release (2025-10-06)
|
|
15
|
+
|
|
5
16
|
* @ember/app-blueprint 6.8.0-beta.4 (patch)
|
|
6
17
|
|
|
7
18
|
#### :bug: Bug Fix
|
package/files/app/app.ts
CHANGED
|
@@ -4,6 +4,7 @@ import Resolver from 'ember-resolver';
|
|
|
4
4
|
import loadInitializers from 'ember-load-initializers';
|
|
5
5
|
import config from '<%= modulePrefix %>/config/environment';
|
|
6
6
|
import { importSync, isDevelopingApp, macroCondition } from '@embroider/macros';
|
|
7
|
+
import setupInspector from '@embroider/legacy-inspector-support/ember-source-4.12';
|
|
7
8
|
|
|
8
9
|
if (macroCondition(isDevelopingApp())) {
|
|
9
10
|
importSync('./deprecation-workflow');
|
|
@@ -13,6 +14,7 @@ export default class App extends Application {
|
|
|
13
14
|
modulePrefix = config.modulePrefix;
|
|
14
15
|
podModulePrefix = config.podModulePrefix;
|
|
15
16
|
Resolver = Resolver.withModules(compatModules);
|
|
17
|
+
inspector = setupInspector(this);
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
loadInitializers(App, config.modulePrefix, compatModules);
|
package/files/package.json
CHANGED
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"@embroider/compat": "^4.1.3",
|
|
57
57
|
"@embroider/router": "^3.0.3",
|
|
58
58
|
"@embroider/config-meta-loader": "^1.0.0",
|
|
59
|
+
"@embroider/legacy-inspector-support": "^0.1.2",
|
|
59
60
|
"@eslint/js": "^9.34.0",
|
|
60
61
|
"@glimmer/component": "^2.0.0<% if (typescript) { %>",
|
|
61
62
|
"@glint/core": "^1.5.2",
|