Skip to content

Commit

Permalink
Replace deprecated "broccoli-sourcemap-concat" with "broccoli-concat"
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Nov 30, 2016
1 parent fe7dcab commit 2763c7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ember-cli-build.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var Funnel = require('broccoli-funnel');
var mergeTrees = require('broccoli-merge-trees');
var Babel = require('broccoli-babel-transpiler');
var concat = require('broccoli-sourcemap-concat');
var concat = require('broccoli-concat');
var JSHint = require('broccoli-jshint');
var existsSync = require('exists-sync');

Expand Down Expand Up @@ -78,7 +78,7 @@ module.exports = function(options) {
}

var vendor = concat('bower_components', {
inputFiles: inputFiles,
headerFiles: inputFiles,
outputFile: '/assets/vendor.js'
});

Expand All @@ -95,7 +95,7 @@ module.exports = function(options) {
});

var testSupport = concat('bower_components', {
inputFiles: ['ember-cli-shims/app-shims.js',
headerFiles: ['ember-cli-shims/app-shims.js',
'ember-cli-test-loader/test-loader.js'],
outputFile: '/assets/test-support.js'
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"broccoli-funnel": "^1.0.5",
"broccoli-jshint": "^1.1.2",
"broccoli-merge-trees": "^1.1.5",
"broccoli-sourcemap-concat": "^0.4.4",
"broccoli-concat": "^3.0.5",
"ember-cli": "1.13.13",
"ember-cli-release": "^1.0.0-beta.1",
"ember-try": "0.2.2",
Expand Down

0 comments on commit 2763c7a

Please sign in to comment.