Skip to content

Commit

Permalink
Convert "chai" from Bower to NPM dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Aug 14, 2016
1 parent ac9dbe8 commit 0e7f79f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 0 additions & 1 deletion blueprints/ember-cli-mocha/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ module.exports = {
var addonContext = this;

return this.addBowerPackagesToProject([
{ name: 'chai', source: 'chai', target: '~2.3.0' },
{ name: 'ember-mocha-adapter', source: 'ember-mocha-adapter', target: '~0.3.1' },
{ name: 'ember-cli-test-loader', source: 'ember-cli-test-loader', target: '0.2.2' }
]).then(function() {
Expand Down
1 change: 0 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"ember-cli-shims": "0.1.1",
"ember-cli-test-loader": "0.2.2",
"ember-qunit-notifications": "0.1.0",
"chai": "~2.3.0",
"ember-mocha-adapter": "~0.3.1"
}
}
10 changes: 9 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@ module.exports = {
destDir: '/mocha',
});

var chaiPath = path.dirname(resolve.sync('chai'));
// var chaiTree = this.treeGenerator(chaiPath);
var chaiTree = new Funnel(chaiPath, {
files: ['chai.js'],
destDir: '/chai',
});

var emberMochaBuildSupportPath = path.join(this._emberMochaLibPath, '..', 'build-support');

var mochaSetupTree = new Funnel(emberMochaBuildSupportPath, {
Expand All @@ -113,6 +120,7 @@ module.exports = {
var trees = [
tree,
mochaTree,
chaiTree,
mochaSetupTree
];

Expand Down Expand Up @@ -156,7 +164,7 @@ module.exports = {
var fileAssets = [
'vendor/mocha/mocha.js',
'vendor/mocha/mocha.css',
app.bowerDirectory + '/chai/chai.js',
'vendor/chai/chai.js',
'vendor/ember-mocha/mocha-setup.js',
app.bowerDirectory + '/ember-mocha-adapter/adapter.js',
'vendor/ember-cli-mocha/test-loader.js'
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"broccoli-concat": "^2.1.0",
"broccoli-funnel": "^1.0.1",
"broccoli-merge-trees": "^1.1.1",
"chai": "^3.5.0",
"ember-cli-babel": "^5.1.6",
"ember-cli-version-checker": "^1.1.6",
"ember-mocha": "^0.8.11",
Expand Down

0 comments on commit 0e7f79f

Please sign in to comment.