Skip to content

Commit

Permalink
systemjs builder refactor to new method name
Browse files Browse the repository at this point in the history
  • Loading branch information
b091 committed Sep 23, 2015
1 parent 5ac9c1e commit 6040eaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ module.exports = function(gulp, config) {
.then(function() {
var moduleName = 'app';
var buildConfig = {
sfxFormat: 'amd',
format: 'amd',
minify: false,
sourceMaps: true
};
return builder.buildSFX(moduleName, outFile, buildConfig);
return builder.buildStatic(moduleName, outFile, buildConfig);
})
.then(function() {
var mapFile = outFile + '.map';
Expand Down

0 comments on commit 6040eaf

Please sign in to comment.