@ember/app-blueprint 0.7.1 → 0.8.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.
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
- "impact": "patch",
5
- "oldVersion": "0.7.0",
6
- "newVersion": "0.7.1",
4
+ "impact": "minor",
5
+ "oldVersion": "0.7.1",
6
+ "newVersion": "0.8.0",
7
7
  "tagName": "latest",
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"
@@ -14,5 +18,5 @@
14
18
  "pkgJSONPath": "./package.json"
15
19
  }
16
20
  },
17
- "description": "## Release (2025-06-24)\n\n* @ember/app-blueprint 0.7.1 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#33](https://github.com/ember-cli/ember-app-blueprint/pull/33) Fix NODE_ENV for tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
21
+ "description": "## Release (2025-07-01)\n\n* @ember/app-blueprint 0.8.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#43](https://github.com/ember-cli/ember-app-blueprint/pull/43) No top-level ambiguous js ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#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))\n * [#42](https://github.com/ember-cli/ember-app-blueprint/pull/42) Don't allow CI to run linting twice ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#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))\n\n#### Committers: 2\n- Thomas Gossmann ([@gossi](https://github.com/gossi))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
18
22
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2025-07-01)
4
+
5
+ * @ember/app-blueprint 0.8.0 (minor)
6
+
7
+ #### :rocket: Enhancement
8
+ * `@ember/app-blueprint`
9
+ * [#43](https://github.com/ember-cli/ember-app-blueprint/pull/43) No top-level ambiguous js ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
10
+
11
+ #### :bug: Bug Fix
12
+ * `@ember/app-blueprint`
13
+ * [#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))
14
+ * [#42](https://github.com/ember-cli/ember-app-blueprint/pull/42) Don't allow CI to run linting twice ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
15
+ * [#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))
16
+
17
+ #### Committers: 2
18
+ - Thomas Gossmann ([@gossi](https://github.com/gossi))
19
+ - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
20
+
3
21
  ## Release (2025-06-24)
4
22
 
5
23
  * @ember/app-blueprint 0.7.1 (patch)
@@ -1,6 +1,4 @@
1
- 'use strict';
2
-
3
- module.exports = {
1
+ export default {
4
2
  plugins: ['prettier-plugin-ember-template-tag'],
5
3
  singleQuote: true,
6
4
  overrides: [
@@ -0,0 +1,3 @@
1
+ export default {
2
+ extends: 'recommended',
3
+ };
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:ember <% if (npm) { %>-- <% } %>--server`
36
+ - `<%= invokeScriptPrefix %> test <% if (npm) { %>-- <% } %>--server`
37
37
 
38
38
  ### Linting
39
39
 
package/files/gitignore CHANGED
@@ -7,7 +7,7 @@
7
7
  /node_modules/
8
8
 
9
9
  # misc
10
- /.env*
10
+ *.local
11
11
  /.pnp*
12
12
  /.eslintcache
13
13
  /coverage/
@@ -24,8 +24,7 @@
24
24
  "lint:js:fix": "eslint . --fix<% if (typescript) { %>",
25
25
  "lint:types": "glint<% } %>",
26
26
  "start": "vite",
27
- "test": "concurrently \"<%= packageManager %>:lint\" \"<%= packageManager %>:test:*\" --names \"lint,test:\" --prefixColors auto",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "0.7.1",
3
+ "version": "0.8.0",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"
@@ -68,10 +68,10 @@ describe('basic functionality', function () {
68
68
  let result;
69
69
 
70
70
  try {
71
- result = await project.execa('pnpm', ['test:ember']);
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:ember';
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
@@ -1,5 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = {
4
- extends: 'recommended',
5
- };
File without changes
File without changes