@ember/app-blueprint 7.1.0-alpha.2 → 7.1.0-alpha.3
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 +12 -0
- package/index.js +2 -2
- package/package.json +2 -3
package/.release-plan.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
4
|
"impact": "minor",
|
|
5
|
-
"oldVersion": "7.1.0-alpha.
|
|
6
|
-
"newVersion": "7.1.0-alpha.
|
|
5
|
+
"oldVersion": "7.1.0-alpha.2",
|
|
6
|
+
"newVersion": "7.1.0-alpha.3",
|
|
7
7
|
"tagName": "alpha",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"pkgJSONPath": "./package.json"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"description": "## Release (2026-04-
|
|
17
|
+
"description": "## Release (2026-04-26)\n\n* @ember/app-blueprint 7.1.0-alpha.3 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#266](https://github.com/ember-cli/ember-app-blueprint/pull/266) remove chalk in favour of native styleText ([@mansona](https://github.com/mansona))\n * [#267](https://github.com/ember-cli/ember-app-blueprint/pull/267) update walk-sync to v4 ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
|
|
18
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2026-04-26)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 7.1.0-alpha.3 (minor)
|
|
6
|
+
|
|
7
|
+
#### :rocket: Enhancement
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#266](https://github.com/ember-cli/ember-app-blueprint/pull/266) remove chalk in favour of native styleText ([@mansona](https://github.com/mansona))
|
|
10
|
+
* [#267](https://github.com/ember-cli/ember-app-blueprint/pull/267) update walk-sync to v4 ([@mansona](https://github.com/mansona))
|
|
11
|
+
|
|
12
|
+
#### Committers: 1
|
|
13
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
14
|
+
|
|
3
15
|
## Release (2026-04-20)
|
|
4
16
|
|
|
5
17
|
* @ember/app-blueprint 7.1.0-alpha.2 (minor)
|
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const stringUtil = require('ember-cli-string-utils');
|
|
4
|
-
const
|
|
4
|
+
const { styleText } = require('node:util');
|
|
5
5
|
const directoryForPackageName = require('./lib/directory-for-package-name');
|
|
6
6
|
const { sortPackageJson } = require('sort-package-json');
|
|
7
7
|
const { join } = require('path');
|
|
@@ -170,7 +170,7 @@ module.exports = {
|
|
|
170
170
|
this.ui.writeLine(
|
|
171
171
|
prependEmoji(
|
|
172
172
|
'✨',
|
|
173
|
-
`Creating a new Ember app in ${
|
|
173
|
+
`Creating a new Ember app in ${styleText('yellow', process.cwd())}:`,
|
|
174
174
|
),
|
|
175
175
|
);
|
|
176
176
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember/app-blueprint",
|
|
3
|
-
"version": "7.1.0-alpha.
|
|
3
|
+
"version": "7.1.0-alpha.3",
|
|
4
4
|
"description": "Blueprint for next generation of Ember apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-blueprint"
|
|
@@ -21,12 +21,11 @@
|
|
|
21
21
|
"publishTag": "alpha"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"chalk": "^4.1.2",
|
|
25
24
|
"ejs": "^3.1.10",
|
|
26
25
|
"ember-cli-string-utils": "^1.1.0",
|
|
27
26
|
"lodash": "^4.17.21",
|
|
28
27
|
"sort-package-json": "^3.6.0",
|
|
29
|
-
"walk-sync": "^
|
|
28
|
+
"walk-sync": "^4.0.1"
|
|
30
29
|
},
|
|
31
30
|
"devDependencies": {
|
|
32
31
|
"@eslint/js": "^9.3.0",
|