ember-cli 6.8.0-beta.4 → 6.8.0-beta.6
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/CHANGELOG.md +33 -0
- package/docs/build/data.json +1 -1
- package/lib/commands/build.js +6 -1
- package/package.json +5 -5
- package/packages/addon-blueprint/package.json +2 -1
- package/packages/app-blueprint/files/package.json +1 -1
- package/packages/app-blueprint/package.json +2 -1
- package/packages/blueprint-blueprint/package.json +2 -1
- package/packages/blueprint-model/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-10-14)
|
|
4
|
+
|
|
5
|
+
* ember-cli 6.8.0-beta.6 (patch)
|
|
6
|
+
* @ember-tooling/classic-build-addon-blueprint 6.8.0-beta.3 (patch)
|
|
7
|
+
* @ember-tooling/classic-build-app-blueprint 6.8.0-beta.3 (patch)
|
|
8
|
+
* @ember-tooling/blueprint-blueprint 0.1.1 (patch)
|
|
9
|
+
* @ember-tooling/blueprint-model 0.3.1 (patch)
|
|
10
|
+
|
|
11
|
+
#### :bug: Bug Fix
|
|
12
|
+
* `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
|
|
13
|
+
* [#10838](https://github.com/ember-cli/ember-cli/pull/10838) Add package license metadata to match repository ([@davidtaylorhq](https://github.com/davidtaylorhq))
|
|
14
|
+
* `ember-cli`
|
|
15
|
+
* [#10834](https://github.com/ember-cli/ember-cli/pull/10834) [bugfix release] Fix tests using wrong versions ([@mansona](https://github.com/mansona))
|
|
16
|
+
|
|
17
|
+
#### :house: Internal
|
|
18
|
+
* `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`, `@ember-tooling/blueprint-blueprint`, `@ember-tooling/blueprint-model`
|
|
19
|
+
* [#10848](https://github.com/ember-cli/ember-cli/pull/10848) merge origin/release into beta ([@mansona](https://github.com/mansona))
|
|
20
|
+
|
|
21
|
+
#### Committers: 2
|
|
22
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
23
|
+
- David Taylor ([@davidtaylorhq](https://github.com/davidtaylorhq))
|
|
24
|
+
|
|
25
|
+
## Release (2025-10-13)
|
|
26
|
+
|
|
27
|
+
* ember-cli 6.8.0-beta.5 (patch)
|
|
28
|
+
|
|
29
|
+
#### :bug: Bug Fix
|
|
30
|
+
* `ember-cli`
|
|
31
|
+
* [#10846](https://github.com/ember-cli/ember-cli/pull/10846) [beta bugfix] allow build --watch only in EMBROIDER_PREBUILD ([@mansona](https://github.com/mansona))
|
|
32
|
+
|
|
33
|
+
#### Committers: 1
|
|
34
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
35
|
+
|
|
3
36
|
## Release (2025-10-13)
|
|
4
37
|
|
|
5
38
|
* ember-cli 6.8.0-beta.4 (minor)
|
package/docs/build/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
|
|
4
4
|
"name": "ember-cli",
|
|
5
5
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
6
|
-
"version": "6.8.0-beta.
|
|
6
|
+
"version": "6.8.0-beta.6-beta-d886305dc5"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/commands/build.js
CHANGED
|
@@ -31,11 +31,16 @@ module.exports = Command.extend({
|
|
|
31
31
|
if (!this.isViteProject) {
|
|
32
32
|
this.description = 'Builds your app and places it into the output path (dist/ by default).';
|
|
33
33
|
this.availableOptions = this.availableOptions.concat(ClassicOptions);
|
|
34
|
+
} else if (process.env.EMBROIDER_PREBUILD) {
|
|
35
|
+
// having the --watch option available surpresses a warning that you get in Vite prebuild
|
|
36
|
+
this.availableOptions = this.availableOptions.concat(ClassicOptions[0]);
|
|
34
37
|
}
|
|
35
38
|
},
|
|
36
39
|
|
|
37
40
|
async run(commandOptions) {
|
|
38
|
-
if (this.isViteProject) {
|
|
41
|
+
if (this.isViteProject && !process.env.EMBROIDER_PREBUILD) {
|
|
42
|
+
// --watch is used during Embroider prebuild but should never be used directly so we only throw in this case if
|
|
43
|
+
// EMBROIDER_PREBUILD has been set
|
|
39
44
|
if (commandOptions.watch) {
|
|
40
45
|
return Promise.reject(
|
|
41
46
|
new SilentError(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-cli",
|
|
3
|
-
"version": "6.8.0-beta.
|
|
3
|
+
"version": "6.8.0-beta.6",
|
|
4
4
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -118,10 +118,10 @@
|
|
|
118
118
|
"watch-detector": "^1.0.2",
|
|
119
119
|
"workerpool": "^9.2.0",
|
|
120
120
|
"yam": "^1.0.0",
|
|
121
|
-
"@ember-tooling/blueprint-blueprint": "0.1.
|
|
122
|
-
"@ember-tooling/blueprint
|
|
123
|
-
"@ember-tooling/
|
|
124
|
-
"@ember-tooling/classic-build-addon-blueprint": "6.8.0-beta.
|
|
121
|
+
"@ember-tooling/blueprint-blueprint": "0.1.1",
|
|
122
|
+
"@ember-tooling/classic-build-app-blueprint": "6.8.0-beta.3",
|
|
123
|
+
"@ember-tooling/blueprint-model": "0.3.1",
|
|
124
|
+
"@ember-tooling/classic-build-addon-blueprint": "6.8.0-beta.3"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
127
|
"broccoli-plugin": "^4.0.3",
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/classic-build-addon-blueprint",
|
|
3
|
-
"version": "6.8.0-beta.
|
|
3
|
+
"version": "6.8.0-beta.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
7
7
|
"directory": "packages/addon-blueprint"
|
|
8
8
|
},
|
|
9
|
+
"license": "MIT",
|
|
9
10
|
"keywords": [
|
|
10
11
|
"ember-blueprint"
|
|
11
12
|
],
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"broccoli-asset-rev": "^3.0.0",
|
|
61
61
|
"concurrently": "^9.2.1",
|
|
62
62
|
"ember-auto-import": "^2.10.0",
|
|
63
|
-
"ember-cli": "~6.8.0-beta.
|
|
63
|
+
"ember-cli": "~6.8.0-beta.6",
|
|
64
64
|
"ember-cli-app-version": "^7.0.0",
|
|
65
65
|
"ember-cli-babel": "^8.2.0",
|
|
66
66
|
"ember-cli-clean-css": "^3.0.0",
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/classic-build-app-blueprint",
|
|
3
|
-
"version": "6.8.0-beta.
|
|
3
|
+
"version": "6.8.0-beta.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
7
7
|
"directory": "packages/app-blueprint"
|
|
8
8
|
},
|
|
9
|
+
"license": "MIT",
|
|
9
10
|
"keywords": [
|
|
10
11
|
"ember-blueprint"
|
|
11
12
|
],
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/blueprint-blueprint",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
7
7
|
"directory": "packages/blueprint-blueprint"
|
|
8
8
|
},
|
|
9
|
+
"license": "MIT",
|
|
9
10
|
"keywords": [
|
|
10
11
|
"ember-blueprint"
|
|
11
12
|
]
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember-tooling/blueprint-model",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/ember-cli/ember-cli.git",
|
|
7
7
|
"directory": "packages/blueprint-model"
|
|
8
8
|
},
|
|
9
|
+
"license": "MIT",
|
|
9
10
|
"dependencies": {
|
|
10
11
|
"chalk": "^4.1.2",
|
|
11
12
|
"diff": "^7.0.0",
|