Skip to content

Commit

Permalink
Add functionality to include sub folders on modules for javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
lcorderogap committed Apr 4, 2017
1 parent 7d5ff11 commit d4d60f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ module.exports = function (config, grunt) {
var deniedFiles = null;
for (var i in elements) {
element = elements[i];
src.push(path + element + '/*.js');
src.push(path + element + '/**/*.js');
if (tenant) {
tenantFiles = self.getModuleFiles(module, element, config.src + config.tenants + '/' + tenant + '/');
deniedFiles = self.getDeniedFilesForModule(tenantFiles, srcPath, module);
Expand Down

0 comments on commit d4d60f9

Please sign in to comment.