ember-cli 6.8.0 → 6.8.1
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
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-11-29)
|
|
4
|
+
|
|
5
|
+
* ember-cli 6.8.1 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `ember-cli`
|
|
9
|
+
* [#10860](https://github.com/ember-cli/ember-cli/pull/10860) [BUGFIX release]: Enter the WatchDetector branch of the build command when EMBROIDER_PREBUILD is present ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
13
|
+
|
|
3
14
|
## Release (2025-10-14)
|
|
4
15
|
|
|
5
16
|
* ember-cli 6.8.0 (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.
|
|
6
|
+
"version": "6.8.1-release-0e508704c2"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/models/command.js
CHANGED
|
@@ -312,7 +312,7 @@ let Command = CoreObject.extend({
|
|
|
312
312
|
|
|
313
313
|
let options = commandOptions.options;
|
|
314
314
|
|
|
315
|
-
if (this.hasOption('watcher')) {
|
|
315
|
+
if (this.hasOption('watcher') || process.env.EMBROIDER_PREBUILD) {
|
|
316
316
|
// Do stuff to try and provide a good experience when it comes to file watching:
|
|
317
317
|
let watchPreference = detector.findBestWatcherOption(options);
|
|
318
318
|
|
package/package.json
CHANGED