ember-cli 4.9.0 → 4.9.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 +13 -0
- package/docs/build/data.json +1 -1
- package/lib/commands/test.js +9 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## v4.9.1
|
|
4
|
+
|
|
5
|
+
#### Blueprint Changes
|
|
6
|
+
|
|
7
|
+
- [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.9.0...v4.9.1)
|
|
8
|
+
- [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.9.0...v4.9.1)
|
|
9
|
+
|
|
10
|
+
#### Changelog
|
|
11
|
+
|
|
12
|
+
- [#10101](https://github.com/ember-cli/ember-cli/pull/10101) [BUGFIX release] Correctly instantiate `Watcher` instance when running `ember test --serve` [@bertdeblock](https://github.com/bertdeblock)
|
|
13
|
+
|
|
14
|
+
Thank you to all who took the time to contribute!
|
|
15
|
+
|
|
3
16
|
## v4.9.0
|
|
4
17
|
|
|
5
18
|
#### Blueprint Changes
|
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": "4.9.
|
|
6
|
+
"version": "4.9.1-release-99e3f883ac"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
package/lib/commands/test.js
CHANGED
|
@@ -182,13 +182,15 @@ module.exports = Command.extend({
|
|
|
182
182
|
session = this.runTask('TestServer', testOptions);
|
|
183
183
|
} else {
|
|
184
184
|
let builder = new this.Builder(testOptions);
|
|
185
|
-
testOptions.watcher =
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
185
|
+
testOptions.watcher = (
|
|
186
|
+
await this.Watcher.build(
|
|
187
|
+
Object.assign(this._env(), {
|
|
188
|
+
builder,
|
|
189
|
+
verbose: false,
|
|
190
|
+
options: commandOptions,
|
|
191
|
+
})
|
|
192
|
+
)
|
|
193
|
+
).watcher;
|
|
192
194
|
session = this.runTask('TestServer', testOptions).finally(() => builder.cleanup());
|
|
193
195
|
}
|
|
194
196
|
} else if (hasBuild) {
|