Skip to content

Commit

Permalink
Fix for renamed qunit-start.js to start.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Glanzer committed Feb 18, 2015
1 parent 446664d commit 7a4c0a8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ MIT

## Release History

* 0.2.7

Fixing an issue with asset management related to the rename of qunit-start.js to start.js

* 0.2.6

Added ember-cli-mocha support - thanks to Matt Heisig
Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ module.exports = {
destDir: '/assets'
});

var qunitStart = this.pickFiles(lib, {
files: ['qunit-start.js'],
var start = this.pickFiles(lib, {
files: ['start.js'],
srcDir: '/',
destDir: '/'
});

var testLoaderTree = this.concatFiles(this.mergeTrees([treeTestLoader, qunitStart]), {
var testLoaderTree = this.concatFiles(this.mergeTrees([treeTestLoader, start]), {
inputFiles: ['**/*.js'],
outputFile: '/assets/test-loader.js'
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-cli-blanket",
"version": "0.2.6",
"version": "0.2.7",
"description": "Blanket code coverage for ember-cli",
"main": "index.js",
"directories": {
Expand Down

0 comments on commit 7a4c0a8

Please sign in to comment.