@ember/app-blueprint 0.7.0 → 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.
@@ -2,8 +2,8 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "minor",
5
- "oldVersion": "0.6.0",
6
- "newVersion": "0.7.0",
5
+ "oldVersion": "0.7.1",
6
+ "newVersion": "0.8.0",
7
7
  "tagName": "latest",
8
8
  "constraints": [
9
9
  {
@@ -12,11 +12,11 @@
12
12
  },
13
13
  {
14
14
  "impact": "patch",
15
- "reason": "Appears in changelog section :house: Internal"
15
+ "reason": "Appears in changelog section :bug: Bug Fix"
16
16
  }
17
17
  ],
18
18
  "pkgJSONPath": "./package.json"
19
19
  }
20
20
  },
21
- "description": "## Release (2025-06-18)\n\n* @ember/app-blueprint 0.7.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#27](https://github.com/ember-cli/ember-app-blueprint/pull/27) Remove unused dependencies ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#35](https://github.com/ember-cli/ember-app-blueprint/pull/35) Adjust the lint command / enforce prettier in CI (our code, not for the output) ([@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"
22
22
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
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
+
21
+ ## Release (2025-06-24)
22
+
23
+ * @ember/app-blueprint 0.7.1 (patch)
24
+
25
+ #### :bug: Bug Fix
26
+ * `@ember/app-blueprint`
27
+ * [#33](https://github.com/ember-cli/ember-app-blueprint/pull/33) Fix NODE_ENV for tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
28
+
29
+ #### Committers: 1
30
+ - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
31
+
3
32
  ## Release (2025-06-18)
4
33
 
5
34
  * @ember/app-blueprint 0.7.0 (minor)
@@ -0,0 +1,8 @@
1
+ # This file is committed to git and should not contain any secrets.
2
+ #
3
+ # Vite recommends using .env.local or .env.[mode].local if you need to manage secrets
4
+ # SEE: https://vite.dev/guide/env-and-mode.html#env-files for more information.
5
+
6
+
7
+ # Default NODE_ENV with vite build --mode=test is production
8
+ NODE_ENV=development
@@ -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.0",
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