Skip to content
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.

Commit

Permalink
Pass options straight to module-graph
Browse files Browse the repository at this point in the history
  • Loading branch information
juandopazo committed May 29, 2014
1 parent a69e254 commit d31fe1c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tasks/module-graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ module.exports = function (grunt) {
result = JSON.stringify(hash(sources.map(function (filepath) {
return path.basename(filepath, '.js');
}), sources.map(function (filepath) {
return graph(grunt.file.read(filepath), {
includeBindings: options.includeBindings
});
return graph(grunt.file.read(filepath), options);
})));

toArray(file.dest).forEach(function (filepath) {
Expand Down

0 comments on commit d31fe1c

Please sign in to comment.