Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Fix issue that was preventing Bundling from running in Node 6.x+
Browse files Browse the repository at this point in the history
  • Loading branch information
Jahnp committed Oct 4, 2016
1 parent 33055f2 commit 972f2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulp/Bundling.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ gulp.task('Bundles-buildData', function() {
// SASS files, those will be included as well.
// "full": Builds all SASS files. Only runs if no includes or
// excludes are defined.
let bundleMode = () => {
let bundleMode = (() => {
let _mode = '';

if (excludes !== undefined && excludes.length > 0) {
Expand All @@ -93,7 +93,7 @@ gulp.task('Bundles-buildData', function() {
}

return _mode;
}();
})();

// Walk the SASS and components folders.
let srcFolders = Utilities.getFolders(Config.paths.srcPath).filter((folderName) => {
Expand Down

0 comments on commit 972f2af

Please sign in to comment.