From 8ee0c366ecebb540975fe0aed32855b910c99478 Mon Sep 17 00:00:00 2001 From: Eric Bremner <ebremner@uwaterloo.ca> Date: Wed, 7 Sep 2022 06:52:38 -0400 Subject: [PATCH] ISTWCMS-5740: coding standards --- dashboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard.js b/dashboard.js index 23de0e37..d37304fc 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')); -- GitLab