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)
@@ -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-release-8de00124a8"
6
+ "version": "6.8.1-release-0e508704c2"
7
7
  },
8
8
  "files": {
9
9
  "lib/broccoli/default-packager.js": {
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "6.8.0",
3
+ "version": "6.8.1",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",
@@ -60,7 +60,7 @@
60
60
  "broccoli-asset-rev": "^3.0.0",
61
61
  "concurrently": "^9.2.1",
62
62
  "ember-auto-import": "^2.11.1",
63
- "ember-cli": "~6.8.0",
63
+ "ember-cli": "~6.8.1",
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",