@ember/app-blueprint 6.10.0-alpha.2 → 6.10.0-alpha.3
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 +3 -7
- package/CHANGELOG.md +11 -0
- package/files/_js_eslint.config.mjs +1 -1
- package/files/_ts_eslint.config.mjs +1 -2
- package/files/package.json +1 -1
- package/package.json +1 -1
package/.release-plan.json
CHANGED
|
@@ -2,21 +2,17 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
4
|
"impact": "patch",
|
|
5
|
-
"oldVersion": "6.10.0-alpha.
|
|
6
|
-
"newVersion": "6.10.0-alpha.
|
|
5
|
+
"oldVersion": "6.10.0-alpha.2",
|
|
6
|
+
"newVersion": "6.10.0-alpha.3",
|
|
7
7
|
"tagName": "alpha",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
10
|
"impact": "patch",
|
|
11
11
|
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"impact": "patch",
|
|
15
|
-
"reason": "Appears in changelog section :house: Internal"
|
|
16
12
|
}
|
|
17
13
|
],
|
|
18
14
|
"pkgJSONPath": "./package.json"
|
|
19
15
|
}
|
|
20
16
|
},
|
|
21
|
-
"description": "## Release (2025-11-
|
|
17
|
+
"description": "## Release (2025-11-12)\n\n* @ember/app-blueprint 6.10.0-alpha.3 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#134](https://github.com/ember-cli/ember-app-blueprint/pull/134) Restore correct version of babel-plugin-ember-template-compilation ([@ef4](https://github.com/ef4))\n\n#### Committers: 1\n- Edward Faulkner ([@ef4](https://github.com/ef4))\n"
|
|
22
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-11-12)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.10.0-alpha.3 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#134](https://github.com/ember-cli/ember-app-blueprint/pull/134) Restore correct version of babel-plugin-ember-template-compilation ([@ef4](https://github.com/ef4))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- Edward Faulkner ([@ef4](https://github.com/ef4))
|
|
13
|
+
|
|
3
14
|
## Release (2025-11-07)
|
|
4
15
|
|
|
5
16
|
* @ember/app-blueprint 6.10.0-alpha.2 (patch)
|
|
@@ -21,7 +21,7 @@ import eslintConfigPrettier from 'eslint-config-prettier';
|
|
|
21
21
|
import qunit from 'eslint-plugin-qunit';
|
|
22
22
|
import n from 'eslint-plugin-n';
|
|
23
23
|
|
|
24
|
-
import babelParser from '@babel/eslint-parser';
|
|
24
|
+
import babelParser from '@babel/eslint-parser/experimental-worker';
|
|
25
25
|
|
|
26
26
|
const esmParserOptions = {
|
|
27
27
|
ecmaFeatures: { modules: true },
|
|
@@ -24,7 +24,7 @@ import eslintConfigPrettier from 'eslint-config-prettier';
|
|
|
24
24
|
import qunit from 'eslint-plugin-qunit';
|
|
25
25
|
import n from 'eslint-plugin-n';
|
|
26
26
|
|
|
27
|
-
import babelParser from '@babel/eslint-parser';
|
|
27
|
+
import babelParser from '@babel/eslint-parser/experimental-worker';
|
|
28
28
|
|
|
29
29
|
const parserOptions = {
|
|
30
30
|
esm: {
|
|
@@ -34,7 +34,6 @@ const parserOptions = {
|
|
|
34
34
|
},
|
|
35
35
|
ts: {
|
|
36
36
|
projectService: true,
|
|
37
|
-
project: true,
|
|
38
37
|
tsconfigRootDir: import.meta.dirname,
|
|
39
38
|
},
|
|
40
39
|
},
|
package/files/package.json
CHANGED
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@warp-drive/json-api": "5.8.0",
|
|
62
62
|
"@warp-drive/legacy": "5.8.0",
|
|
63
63
|
"@warp-drive/utilities": "5.8.0<% } %>",
|
|
64
|
-
"babel-plugin-ember-template-compilation": "^
|
|
64
|
+
"babel-plugin-ember-template-compilation": "^3.0.1",
|
|
65
65
|
"concurrently": "^9.2.1",
|
|
66
66
|
"decorator-transforms": "^2.3.0",
|
|
67
67
|
"ember-auto-import": "^2.11.1",
|