diff --git a/dashboard.js b/dashboard.js index 23de0e374d191d191480ab440f1a59c4220e7b01..d37304fcd4cbec38e4f134e4a380f172641a7064 100644 --- a/dashboard.js +++ b/dashboard.js @@ -25,7 +25,7 @@ function handleError(err) { module.exports = { // Compile Sass. - compileDashboards: function() { + compileDashboards: function () { return src([ './src/patterns/global.scss', './src/patterns/01-core/**/*.scss', @@ -38,7 +38,7 @@ module.exports = { outputStyle: 'expanded' }).on('error', handleError)) .pipe(prefix({ cascade: false })) - .pipe(rename(function(path) { path.dirname = ''; return path;})) + .pipe(rename(function (path) { path.dirname = ''; return path;})) .pipe(clean()) .pipe(rename('dashboard.css')) .pipe(dest('./dist/css'));