Skip to content

Commit 10eae9e

Browse files
committed
chore: updated the ember-cli version to the latest release
Change the reference to ember-cli from a github reference to an npm ref via fixed version Add errorStream configuration in mock-ui test helper fixes #73
1 parent c4be333 commit 10eae9e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
"dependencies": {
3232
"broccoli": "^0.16.3",
3333
"broccoli-concat": "0.0.13",
34-
"broccoli-funnel": "^0.2.3",
35-
"broccoli-merge-trees": "^0.2.1",
34+
"broccoli-funnel": "^1.0.0",
35+
"broccoli-merge-trees": "^1.0.0",
3636
"broccoli-writer": "^0.1.1",
3737
"chalk": "^1.1.0",
38-
"ember-cli": "ember-cli/ember-cli#ae5e72614e40f5e6dd57463e526c65da899fde07",
38+
"ember-cli": "1.13.13",
3939
"exit": "^0.1.2",
4040
"fs-extra": "^0.18.4",
4141
"leek": "0.0.19",

tests/helpers/mock-ui.js

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ function MockUI() {
1212
inputStream: through(),
1313
outputStream: through(function(data) {
1414
this.output += data;
15+
}.bind(this)),
16+
errorStream: through(function(data) {
17+
this.errors += data;
1518
}.bind(this))
1619
});
1720
}

0 commit comments

Comments
 (0)