@ember/app-blueprint 0.7.1 → 0.8.1
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 -3
- package/CHANGELOG.md +29 -0
- package/files/{.prettierrc.js → .prettierrc.mjs} +1 -3
- package/files/.template-lintrc.mjs +3 -0
- package/files/README.md +1 -1
- package/files/app/router.ts +1 -1
- package/files/gitignore +1 -1
- package/files/package.json +1 -2
- package/package.json +1 -1
- package/tests/default.test.mjs +2 -2
- package/files/.template-lintrc.js +0 -5
- /package/files/{.env.test → .env.development} +0 -0
- /package/files/{.stylelintrc.js → .stylelintrc.cjs} +0 -0
package/.release-plan.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
4
|
"impact": "patch",
|
|
5
|
-
"oldVersion": "0.
|
|
6
|
-
"newVersion": "0.
|
|
5
|
+
"oldVersion": "0.8.0",
|
|
6
|
+
"newVersion": "0.8.1",
|
|
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-
|
|
17
|
+
"description": "## Release (2025-07-22)\n\n* @ember/app-blueprint 0.8.1 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#53](https://github.com/ember-cli/ember-app-blueprint/pull/53) Use @embroider/router ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
|
|
18
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-07-22)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 0.8.1 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#53](https://github.com/ember-cli/ember-app-blueprint/pull/53) Use @embroider/router ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
13
|
+
|
|
14
|
+
## Release (2025-07-01)
|
|
15
|
+
|
|
16
|
+
* @ember/app-blueprint 0.8.0 (minor)
|
|
17
|
+
|
|
18
|
+
#### :rocket: Enhancement
|
|
19
|
+
* `@ember/app-blueprint`
|
|
20
|
+
* [#43](https://github.com/ember-cli/ember-app-blueprint/pull/43) No top-level ambiguous js ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
21
|
+
|
|
22
|
+
#### :bug: Bug Fix
|
|
23
|
+
* `@ember/app-blueprint`
|
|
24
|
+
* [#41](https://github.com/ember-cli/ember-app-blueprint/pull/41) Allow .env.test to be checked in to git ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
25
|
+
* [#42](https://github.com/ember-cli/ember-app-blueprint/pull/42) Don't allow CI to run linting twice ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
26
|
+
* [#38](https://github.com/ember-cli/ember-app-blueprint/pull/38) Change Test mode to Development mode and fix NODE_ENV in tests ([@gossi](https://github.com/gossi))
|
|
27
|
+
|
|
28
|
+
#### Committers: 2
|
|
29
|
+
- Thomas Gossmann ([@gossi](https://github.com/gossi))
|
|
30
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
31
|
+
|
|
3
32
|
## Release (2025-06-24)
|
|
4
33
|
|
|
5
34
|
* @ember/app-blueprint 0.7.1 (patch)
|
package/files/README.md
CHANGED
|
@@ -33,7 +33,7 @@ Make use of the many generators for code, try `ember help generate` for more det
|
|
|
33
33
|
### Running Tests
|
|
34
34
|
|
|
35
35
|
- `<%= invokeScriptPrefix %> test`
|
|
36
|
-
- `<%= invokeScriptPrefix %> test
|
|
36
|
+
- `<%= invokeScriptPrefix %> test <% if (npm) { %>-- <% } %>--server`
|
|
37
37
|
|
|
38
38
|
### Linting
|
|
39
39
|
|
package/files/app/router.ts
CHANGED
package/files/gitignore
CHANGED
package/files/package.json
CHANGED
|
@@ -24,8 +24,7 @@
|
|
|
24
24
|
"lint:js:fix": "eslint . --fix<% if (typescript) { %>",
|
|
25
25
|
"lint:types": "glint<% } %>",
|
|
26
26
|
"start": "vite",
|
|
27
|
-
"test": "
|
|
28
|
-
"test:ember": "vite build --mode test && testem ci"
|
|
27
|
+
"test": "vite build --mode development && testem ci"
|
|
29
28
|
},
|
|
30
29
|
"exports": {
|
|
31
30
|
"./tests/*": "./tests/*",
|
package/package.json
CHANGED
package/tests/default.test.mjs
CHANGED
|
@@ -68,10 +68,10 @@ describe('basic functionality', function () {
|
|
|
68
68
|
let result;
|
|
69
69
|
|
|
70
70
|
try {
|
|
71
|
-
result = await project.execa('pnpm', ['test
|
|
71
|
+
result = await project.execa('pnpm', ['test']);
|
|
72
72
|
} catch (err) {
|
|
73
73
|
console.log(err.stdout, err.stderr);
|
|
74
|
-
throw 'Failed to successfully run test
|
|
74
|
+
throw 'Failed to successfully run test';
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
// make sure that each of the tests that we expect actually show up
|
|
File without changes
|
|
File without changes
|