Skip to content

Commit

Permalink
Fixed faulty build process
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Dec 1, 2014
1 parent fe68025 commit 6b4b095
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,11 @@ module.exports = function (grunt) {
},
nonull: true,
src: [
'<%= build_dir %>/vendor/**/*.js',
(function() {
return userConfig.vendor_files.js.map(function(file) {
return userConfig.build_dir + "/" + file;
});
}()),
'buildConfig/module.prefix',
'<%= build_dir %>/src/**/*.js',
'<%= html2js.app.dest %>',
Expand Down Expand Up @@ -344,7 +348,7 @@ module.exports = function (grunt) {
banner: '<%= meta.banner %>'
},
files: {
'<%= concat.compile_js.dest %>': '<%= concat.compile_js.dest %>'
"<%= concat.compile_js.dest %>": '<%= concat.compile_js.dest %>'
}
}
},
Expand Down

0 comments on commit 6b4b095

Please sign in to comment.