@ember/app-blueprint 0.2.0 → 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.
- package/.release-plan.json +3 -3
- package/CHANGELOG.md +15 -0
- package/files/package.json +5 -5
- package/package.json +2 -1
package/.release-plan.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
4
|
"impact": "minor",
|
|
5
|
-
"oldVersion": "0.
|
|
6
|
-
"newVersion": "0.
|
|
5
|
+
"oldVersion": "0.2.0",
|
|
6
|
+
"newVersion": "0.3.0",
|
|
7
7
|
"tagName": "latest",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"pkgJSONPath": "./package.json"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"description": "## Release (2025-05-20)\n\n* @ember/app-blueprint 0.
|
|
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"
|
|
22
22
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## Release (2025-05-20)
|
|
4
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
|
+
|
|
5
20
|
* @ember/app-blueprint 0.2.0 (minor)
|
|
6
21
|
|
|
7
22
|
#### :rocket: Enhancement
|
package/files/package.json
CHANGED
|
@@ -52,12 +52,12 @@
|
|
|
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.
|
|
56
|
-
"@embroider/core": "^4.
|
|
57
|
-
"@embroider/vite": "^1.
|
|
58
|
-
"@embroider/compat": "^4.
|
|
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
|
|
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",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember/app-blueprint",
|
|
3
|
-
"version": "0.
|
|
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,7 @@
|
|
|
13
13
|
"author": "",
|
|
14
14
|
"main": "index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
+
"chalk": "^4.1.2",
|
|
16
17
|
"ember-cli-string-utils": "^1.1.0",
|
|
17
18
|
"lodash": "^4.17.21",
|
|
18
19
|
"walk-sync": "^3.0.0"
|