@ember/app-blueprint 6.10.0-alpha.4 → 6.10.0-alpha.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/.editorconfig +2 -2
- package/.release-plan.json +12 -4
- package/CHANGELOG.md +23 -0
- package/files/.editorconfig +1 -1
- package/files/.github/workflows/ci.yml +2 -2
- package/files/{.stylelintrc.cjs → .stylelintrc.mjs} +1 -3
- package/files/{_js_babel.config.cjs → _js_babel.config.mjs} +5 -7
- package/files/_js_eslint.config.mjs +5 -20
- package/files/{_ts_babel.config.cjs → _ts_babel.config.mjs} +5 -7
- package/files/_ts_eslint.config.mjs +5 -19
- package/files/gitignore +0 -1
- package/files/public/robots.txt +1 -1
- package/package.json +1 -1
package/.editorconfig
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# EditorConfig helps developers define and maintain consistent
|
|
2
2
|
# coding styles between different editors and IDEs
|
|
3
|
-
# editorconfig.org
|
|
3
|
+
# https://editorconfig.org/
|
|
4
4
|
|
|
5
5
|
root = true
|
|
6
6
|
|
|
@@ -16,4 +16,4 @@ indent_size = 2
|
|
|
16
16
|
insert_final_newline = false
|
|
17
17
|
|
|
18
18
|
[*.{diff,md}]
|
|
19
|
-
trim_trailing_whitespace = false
|
|
19
|
+
trim_trailing_whitespace = false
|
package/.release-plan.json
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
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": "minor",
|
|
5
|
+
"oldVersion": "6.10.0-alpha.4",
|
|
6
|
+
"newVersion": "6.10.0-alpha.5",
|
|
7
7
|
"tagName": "alpha",
|
|
8
8
|
"constraints": [
|
|
9
|
+
{
|
|
10
|
+
"impact": "minor",
|
|
11
|
+
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
+
},
|
|
9
13
|
{
|
|
10
14
|
"impact": "patch",
|
|
11
15
|
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"impact": "patch",
|
|
19
|
+
"reason": "Appears in changelog section :memo: Documentation"
|
|
12
20
|
}
|
|
13
21
|
],
|
|
14
22
|
"pkgJSONPath": "./package.json"
|
|
15
23
|
}
|
|
16
24
|
},
|
|
17
|
-
"description": "## Release (2025-11-
|
|
25
|
+
"description": "## Release (2025-11-21)\n\n* @ember/app-blueprint 6.10.0-alpha.5 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#140](https://github.com/ember-cli/ember-app-blueprint/pull/140) Use an `.mjs` file for configuring Stylelint ([@bertdeblock](https://github.com/bertdeblock))\n * [#142](https://github.com/ember-cli/ember-app-blueprint/pull/142) Use pnpm v10 ([@bertdeblock](https://github.com/bertdeblock))\n * [#138](https://github.com/ember-cli/ember-app-blueprint/pull/138) Update generated ESLint config ([@bertdeblock](https://github.com/bertdeblock))\n * [#44](https://github.com/ember-cli/ember-app-blueprint/pull/44) Use ESM for the babel config ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#139](https://github.com/ember-cli/ember-app-blueprint/pull/139) Remove `/declarations/` entry in `.gitignore` file ([@bertdeblock](https://github.com/bertdeblock))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#141](https://github.com/ember-cli/ember-app-blueprint/pull/141) Update some links to use https ([@bertdeblock](https://github.com/bertdeblock))\n\n#### Committers: 2\n- Bert De Block ([@bertdeblock](https://github.com/bertdeblock))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
|
|
18
26
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-11-21)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.10.0-alpha.5 (minor)
|
|
6
|
+
|
|
7
|
+
#### :rocket: Enhancement
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#140](https://github.com/ember-cli/ember-app-blueprint/pull/140) Use an `.mjs` file for configuring Stylelint ([@bertdeblock](https://github.com/bertdeblock))
|
|
10
|
+
* [#142](https://github.com/ember-cli/ember-app-blueprint/pull/142) Use pnpm v10 ([@bertdeblock](https://github.com/bertdeblock))
|
|
11
|
+
* [#138](https://github.com/ember-cli/ember-app-blueprint/pull/138) Update generated ESLint config ([@bertdeblock](https://github.com/bertdeblock))
|
|
12
|
+
* [#44](https://github.com/ember-cli/ember-app-blueprint/pull/44) Use ESM for the babel config ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
13
|
+
|
|
14
|
+
#### :bug: Bug Fix
|
|
15
|
+
* `@ember/app-blueprint`
|
|
16
|
+
* [#139](https://github.com/ember-cli/ember-app-blueprint/pull/139) Remove `/declarations/` entry in `.gitignore` file ([@bertdeblock](https://github.com/bertdeblock))
|
|
17
|
+
|
|
18
|
+
#### :memo: Documentation
|
|
19
|
+
* `@ember/app-blueprint`
|
|
20
|
+
* [#141](https://github.com/ember-cli/ember-app-blueprint/pull/141) Update some links to use https ([@bertdeblock](https://github.com/bertdeblock))
|
|
21
|
+
|
|
22
|
+
#### Committers: 2
|
|
23
|
+
- Bert De Block ([@bertdeblock](https://github.com/bertdeblock))
|
|
24
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
25
|
+
|
|
3
26
|
## Release (2025-11-12)
|
|
4
27
|
|
|
5
28
|
* @ember/app-blueprint 6.10.0-alpha.4 (patch)
|
package/files/.editorconfig
CHANGED
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
- uses: actions/checkout@v3<% if (pnpm) { %>
|
|
22
22
|
- uses: pnpm/action-setup@v4
|
|
23
23
|
with:
|
|
24
|
-
version:
|
|
24
|
+
version: 10<% } %>
|
|
25
25
|
- name: Install Node
|
|
26
26
|
uses: actions/setup-node@v3
|
|
27
27
|
with:
|
|
@@ -41,7 +41,7 @@ jobs:
|
|
|
41
41
|
- uses: actions/checkout@v3<% if (pnpm) { %>
|
|
42
42
|
- uses: pnpm/action-setup@v4
|
|
43
43
|
with:
|
|
44
|
-
version:
|
|
44
|
+
version: 10<% } %>
|
|
45
45
|
- name: Install Node
|
|
46
46
|
uses: actions/setup-node@v3
|
|
47
47
|
with:
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const {
|
|
1
|
+
import {
|
|
4
2
|
babelCompatSupport,
|
|
5
3
|
templateCompatSupport,
|
|
6
|
-
}
|
|
4
|
+
} from '@embroider/compat/babel';
|
|
7
5
|
|
|
8
|
-
|
|
6
|
+
export default {
|
|
9
7
|
plugins: [
|
|
10
8
|
[
|
|
11
9
|
'babel-plugin-ember-template-compilation',
|
|
@@ -23,14 +21,14 @@ module.exports = {
|
|
|
23
21
|
'module:decorator-transforms',
|
|
24
22
|
{
|
|
25
23
|
runtime: {
|
|
26
|
-
import:
|
|
24
|
+
import: import.meta.resolve('decorator-transforms/runtime-esm'),
|
|
27
25
|
},
|
|
28
26
|
},
|
|
29
27
|
],
|
|
30
28
|
[
|
|
31
29
|
'@babel/plugin-transform-runtime',
|
|
32
30
|
{
|
|
33
|
-
absoluteRuntime:
|
|
31
|
+
absoluteRuntime: import.meta.dirname,
|
|
34
32
|
useESModules: true,
|
|
35
33
|
regenerator: false,
|
|
36
34
|
},
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
import globals from 'globals';
|
|
16
16
|
import js from '@eslint/js';
|
|
17
|
+
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
17
18
|
|
|
18
19
|
import ember from 'eslint-plugin-ember/recommended';
|
|
19
20
|
<% if (warpDrive) { %>import WarpDrive from 'eslint-plugin-warp-drive/recommended';<% } %>
|
|
@@ -28,20 +29,13 @@ const esmParserOptions = {
|
|
|
28
29
|
ecmaVersion: 'latest',
|
|
29
30
|
};
|
|
30
31
|
|
|
31
|
-
export default [
|
|
32
|
+
export default defineConfig([
|
|
33
|
+
globalIgnores(['dist/', 'coverage/', '!**/.*']),
|
|
32
34
|
js.configs.recommended,
|
|
33
35
|
eslintConfigPrettier,
|
|
34
36
|
ember.configs.base,
|
|
35
37
|
ember.configs.gjs,
|
|
36
38
|
<% if (warpDrive) { %>...WarpDrive,<% } %>
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Ignores must be in their own object
|
|
40
|
-
* https://eslint.org/docs/latest/use/configure/ignore
|
|
41
|
-
*/
|
|
42
|
-
{
|
|
43
|
-
ignores: ['dist/', 'node_modules/', 'coverage/', '!**/.*'],
|
|
44
|
-
},
|
|
45
39
|
/**
|
|
46
40
|
* https://eslint.org/docs/latest/use/configure/configuration-files#configuring-linter-options
|
|
47
41
|
*/
|
|
@@ -75,16 +69,7 @@ export default [
|
|
|
75
69
|
* CJS node files
|
|
76
70
|
*/
|
|
77
71
|
{
|
|
78
|
-
files: [
|
|
79
|
-
'**/*.cjs',
|
|
80
|
-
'config/**/*.js',
|
|
81
|
-
'testem.js',
|
|
82
|
-
'testem*.js',
|
|
83
|
-
'.prettierrc.js',
|
|
84
|
-
'.stylelintrc.js',
|
|
85
|
-
'.template-lintrc.js',
|
|
86
|
-
'ember-cli-build.js',
|
|
87
|
-
],
|
|
72
|
+
files: ['**/*.cjs', 'config/**/*.js', 'ember-cli-build.js'],
|
|
88
73
|
plugins: {
|
|
89
74
|
n,
|
|
90
75
|
},
|
|
@@ -115,4 +100,4 @@ export default [
|
|
|
115
100
|
},
|
|
116
101
|
},
|
|
117
102
|
},
|
|
118
|
-
];
|
|
103
|
+
]);
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const {
|
|
1
|
+
import {
|
|
4
2
|
babelCompatSupport,
|
|
5
3
|
templateCompatSupport,
|
|
6
|
-
}
|
|
4
|
+
} from '@embroider/compat/babel';
|
|
7
5
|
|
|
8
|
-
|
|
6
|
+
export default {
|
|
9
7
|
plugins: [
|
|
10
8
|
[
|
|
11
9
|
'@babel/plugin-transform-typescript',
|
|
@@ -31,14 +29,14 @@ module.exports = {
|
|
|
31
29
|
'module:decorator-transforms',
|
|
32
30
|
{
|
|
33
31
|
runtime: {
|
|
34
|
-
import:
|
|
32
|
+
import: import.meta.resolve('decorator-transforms/runtime-esm'),
|
|
35
33
|
},
|
|
36
34
|
},
|
|
37
35
|
],
|
|
38
36
|
[
|
|
39
37
|
'@babel/plugin-transform-runtime',
|
|
40
38
|
{
|
|
41
|
-
absoluteRuntime:
|
|
39
|
+
absoluteRuntime: import.meta.dirname,
|
|
42
40
|
useESModules: true,
|
|
43
41
|
regenerator: false,
|
|
44
42
|
},
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
import globals from 'globals';
|
|
16
16
|
import js from '@eslint/js';
|
|
17
|
+
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
17
18
|
|
|
18
19
|
import ts from 'typescript-eslint';
|
|
19
20
|
|
|
@@ -39,20 +40,14 @@ const parserOptions = {
|
|
|
39
40
|
},
|
|
40
41
|
};
|
|
41
42
|
|
|
42
|
-
export default
|
|
43
|
+
export default defineConfig([
|
|
44
|
+
globalIgnores(['dist/', 'coverage/', '!**/.*']),
|
|
43
45
|
js.configs.recommended,
|
|
44
46
|
ember.configs.base,
|
|
45
47
|
ember.configs.gjs,
|
|
46
48
|
ember.configs.gts,
|
|
47
49
|
<% if (warpDrive) { %>...WarpDrive,<% } %>
|
|
48
50
|
eslintConfigPrettier,
|
|
49
|
-
/**
|
|
50
|
-
* Ignores must be in their own object
|
|
51
|
-
* https://eslint.org/docs/latest/use/configure/ignore
|
|
52
|
-
*/
|
|
53
|
-
{
|
|
54
|
-
ignores: ['dist/', 'node_modules/', 'coverage/', '!**/.*'],
|
|
55
|
-
},
|
|
56
51
|
/**
|
|
57
52
|
* https://eslint.org/docs/latest/use/configure/configuration-files#configuring-linter-options
|
|
58
53
|
*/
|
|
@@ -94,16 +89,7 @@ export default ts.config(
|
|
|
94
89
|
* CJS node files
|
|
95
90
|
*/
|
|
96
91
|
{
|
|
97
|
-
files: [
|
|
98
|
-
'**/*.cjs',
|
|
99
|
-
'config/**/*.js',
|
|
100
|
-
'testem.js',
|
|
101
|
-
'testem*.js',
|
|
102
|
-
'.prettierrc.js',
|
|
103
|
-
'.stylelintrc.js',
|
|
104
|
-
'.template-lintrc.js',
|
|
105
|
-
'ember-cli-build.js',
|
|
106
|
-
],
|
|
92
|
+
files: ['**/*.cjs', 'config/**/*.js', 'ember-cli-build.js'],
|
|
107
93
|
plugins: {
|
|
108
94
|
n,
|
|
109
95
|
},
|
|
@@ -134,4 +120,4 @@ export default ts.config(
|
|
|
134
120
|
},
|
|
135
121
|
},
|
|
136
122
|
},
|
|
137
|
-
);
|
|
123
|
+
]);
|
package/files/gitignore
CHANGED
package/files/public/robots.txt
CHANGED