@ember/app-blueprint 0.1.1 → 0.3.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.1.0",
6
- "newVersion": "0.1.1",
4
+ "impact": "minor",
5
+ "oldVersion": "0.2.0",
6
+ "newVersion": "0.3.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-05-08)\n\n* @ember/app-blueprint 0.1.1 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#10](https://github.com/ember-cli/ember-app-blueprint/pull/10) Add @ember/test-waiters ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#7](https://github.com/ember-cli/ember-app-blueprint/pull/7) Remove @glimmer/tracking ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
21
+ "description": "## Release (2025-05-20)\n\n* @ember/app-blueprint 0.3.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#20](https://github.com/ember-cli/ember-app-blueprint/pull/20) Upgrade embroider dependencies ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#18](https://github.com/ember-cli/ember-app-blueprint/pull/18) Add missing dependency: chalk ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
18
22
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## Release (2025-05-20)
4
+
5
+ * @ember/app-blueprint 0.3.0 (minor)
6
+
7
+ #### :rocket: Enhancement
8
+ * `@ember/app-blueprint`
9
+ * [#20](https://github.com/ember-cli/ember-app-blueprint/pull/20) Upgrade embroider dependencies ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
10
+
11
+ #### :bug: Bug Fix
12
+ * `@ember/app-blueprint`
13
+ * [#18](https://github.com/ember-cli/ember-app-blueprint/pull/18) Add missing dependency: chalk ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
14
+
15
+ #### Committers: 1
16
+ - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
17
+
18
+ ## Release (2025-05-20)
19
+
20
+ * @ember/app-blueprint 0.2.0 (minor)
21
+
22
+ #### :rocket: Enhancement
23
+ * `@ember/app-blueprint`
24
+ * [#13](https://github.com/ember-cli/ember-app-blueprint/pull/13) Bump ember-cli and ember-source to 6.5 (beta) ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
25
+ * [#14](https://github.com/ember-cli/ember-app-blueprint/pull/14) Use *.cjs for the testem config ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
26
+ * [#12](https://github.com/ember-cli/ember-app-blueprint/pull/12) Upgrade ember-data/warp-drive ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
27
+
28
+ #### :bug: Bug Fix
29
+ * `@ember/app-blueprint`
30
+ * [#11](https://github.com/ember-cli/ember-app-blueprint/pull/11) Don't emit application.hbs, use application.gjs ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
31
+ * [#15](https://github.com/ember-cli/ember-app-blueprint/pull/15) Add imported module that is not declared ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
32
+
33
+ #### Committers: 1
34
+ - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
35
+
3
36
  ## Release (2025-05-08)
4
37
 
5
38
  * @ember/app-blueprint 0.1.1 (patch)
@@ -0,0 +1,15 @@
1
+ import { pageTitle } from 'ember-page-title';
2
+ <% if (welcome) {%>import { WelcomePage } from 'ember-welcome-page';<% } %>
3
+
4
+ <template>
5
+ {{pageTitle "<%= namespace %>"}}
6
+ <% if (welcome) { %>
7
+ {{outlet}}
8
+
9
+ {{! The following component displays Ember's default welcome message. }}
10
+ <WelcomePage />
11
+ {{! Feel free to remove this! }}<% } else { %>
12
+ <h2 id="title">Welcome to Ember</h2>
13
+
14
+ {{outlet}}<% } %>
15
+ </template>
@@ -25,7 +25,7 @@
25
25
  "lint:types": "glint<% } %>",
26
26
  "start": "vite",
27
27
  "test": "concurrently \"<%= packageManager %>:lint\" \"<%= packageManager %>:test:*\" --names \"lint,test:\" --prefixColors auto",
28
- "test:ember": "vite build --mode test && ember test --path dist"
28
+ "test:ember": "vite build --mode test && testem ci"
29
29
  },
30
30
  "exports": {
31
31
  "./tests/*": "./tests/*",
@@ -38,26 +38,26 @@
38
38
  "@babel/plugin-transform-typescript":"^7.27.0<% } %>",
39
39
  "@babel/eslint-parser": "^7.26.10<% if (typescript && emberData) { %>",
40
40
  "@ember-data/adapter": "~5.3.12",
41
- "@ember-data/graph": "~5.3.12",
42
- "@ember-data/json-api": "~5.3.12",
43
- "@ember-data/legacy-compat": "~5.3.12",
44
- "@ember-data/model": "~5.3.12",
45
- "@ember-data/request": "~5.3.12",
46
- "@ember-data/request-utils": "~5.3.12",
47
- "@ember-data/serializer": "~5.3.12",
48
- "@ember-data/store": "~5.3.12",
49
- "@ember-data/tracking": "~5.3.12<% } %><% if (typescript) { %>",
41
+ "@ember-data/graph": "~5.5.0",
42
+ "@ember-data/json-api": "~5.5.0",
43
+ "@ember-data/legacy-compat": "~5.5.0",
44
+ "@ember-data/model": "~5.5.0",
45
+ "@ember-data/request": "~5.5.0",
46
+ "@ember-data/request-utils": "~5.5.0",
47
+ "@ember-data/serializer": "~5.5.0",
48
+ "@ember-data/store": "~5.5.0",
49
+ "@ember-data/tracking": "~5.5.0<% } %><% if (typescript) { %>",
50
50
  "@ember/app-tsconfig": "^1.0.3<% } %>",
51
51
  "@ember/optional-features": "^2.2.0",
52
52
  "@ember/string": "^4.0.0",
53
53
  "@ember/test-helpers": "^5.1.0",
54
54
  "@ember/test-waiters": "^4.1.0",
55
- "@embroider/macros": "^1.16.12",
56
- "@embroider/core": "^4.0.0-alpha.0",
57
- "@embroider/vite": "^1.0.0-alpha.0",
58
- "@embroider/compat": "^4.0.0-alpha.0",
55
+ "@embroider/macros": "^1.18.0",
56
+ "@embroider/core": "^4.1.0",
57
+ "@embroider/vite": "^1.1.4",
58
+ "@embroider/compat": "^4.1.0",
59
59
  "@embroider/router": "^3.0.1",
60
- "@embroider/config-meta-loader": "^1.0.0-alpha.0",
60
+ "@embroider/config-meta-loader": "^1.0.0",
61
61
  "@eslint/js": "^9.23.0",
62
62
  "@glimmer/component": "^2.0.0<% if (typescript) { %>",
63
63
  "@glint/core": "^1.5.2",
@@ -67,22 +67,23 @@
67
67
  "@rollup/plugin-babel": "^6.0.4<% if (typescript) { %>",
68
68
  "@types/qunit": "^2.19.12",
69
69
  "@types/rsvp": "^4.0.9<% if (emberData) {%>",
70
- "@warp-drive/core-types": "~0.0.2<% }} %>",
70
+ "@warp-drive/core-types": "~5.5.0<% }} %><% if (emberData) { %>",
71
+ "@warp-drive/ember": "~5.5.0<% } %>",
71
72
  "babel-plugin-ember-template-compilation": "^2.4.1",
72
73
  "concurrently": "^9.1.2",
73
74
  "decorator-transforms": "^2.3.0",
74
75
  "ember-auto-import": "^2.10.0",
75
- "ember-cli": "~6.3.0",
76
+ "ember-cli": "~6.5.0-beta.0",
76
77
  "ember-cli-babel": "^8.2.0",
77
78
  "ember-cli-deprecation-workflow": "^3.3.0",
78
79
  "ember-cli-htmlbars": "^6.3.0<% if (emberData) { %>",
79
- "ember-data": "~5.4.1<% } %>",
80
+ "ember-data": "~5.5.0<% } %>",
80
81
  "ember-load-initializers": "^3.0.1",
81
82
  "ember-modifier": "^4.2.0",
82
83
  "ember-page-title": "^9.0.1",
83
84
  "ember-qunit": "^9.0.1",
84
85
  "ember-resolver": "^13.1.0",
85
- "ember-source": "~6.3.0",
86
+ "ember-source": "~6.5.0-beta.1",
86
87
  "ember-template-imports": "^4.3.0",
87
88
  "ember-template-lint": "^6.1.0<% if (welcome) { %>",
88
89
  "ember-welcome-page": "^7.0.2<% } %>",
@@ -98,6 +99,7 @@
98
99
  "qunit-dom": "^3.4.0",
99
100
  "stylelint": "^16.16.0",
100
101
  "stylelint-config-standard": "^36.0.1",
102
+ "testem": "^3.16.0",
101
103
  "tracked-built-ins": "^3.4.0<% if (typescript) { %>",
102
104
  "typescript": "^5.8.2",
103
105
  "typescript-eslint": "^8.27.0<% } %>",
@@ -3,6 +3,7 @@
3
3
  if (typeof module !== 'undefined') {
4
4
  module.exports = {
5
5
  test_page: 'tests/index.html?hidepassed',
6
+ cwd: 'dist',
6
7
  disable_watching: true,
7
8
  launch_in_ci: ['Chrome'],
8
9
  launch_in_dev: ['Chrome'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"
@@ -13,6 +13,8 @@
13
13
  "author": "",
14
14
  "main": "index.js",
15
15
  "dependencies": {
16
+ "chalk": "^4.1.2",
17
+ "ember-cli-string-utils": "^1.1.0",
16
18
  "lodash": "^4.17.21",
17
19
  "walk-sync": "^3.0.0"
18
20
  },
@@ -1,10 +0,0 @@
1
- {{page-title "<%= namespace %>"}}
2
- <% if (welcome) { %>
3
- {{outlet}}
4
-
5
- {{! The following component displays Ember's default welcome message. }}
6
- <WelcomePage />
7
- {{! Feel free to remove this! }}<% } else { %>
8
- <h2 id="title">Welcome to Ember</h2>
9
-
10
- {{outlet}}<% } %>