From f89d61f97752146a02e5f27e95ad0c357dabedbe Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 24 May 2018 22:57:42 -0400 Subject: [PATCH] Use a more appropriate name for the dashboard css libs --- gulpfile.js | 4 ++-- traditional-bootstrap/gulpfile.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index d58968e..106b873 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -69,7 +69,7 @@ const jsDashboardLibs = [ ]; // CSS libraries for the dashboard -const jsDashboardCSS = [ +const cssDashboardLibs = [ "node_modules/pickadate/lib/themes/default.css", "node_modules/pickadate/lib/themes/default.date.css", "bower_components/simplemde/dist/simplemde.min.css", @@ -171,7 +171,7 @@ gulp.task("sass-dashboard", () => { // Task for dashboard css libraries gulp.task("css-dashboard-libs", () => { - return processCSS("lib-dashboard", jsDashboardCSS); + return processCSS("lib-dashboard", cssDashboardLibs); }); // Task for public javascript diff --git a/traditional-bootstrap/gulpfile.js b/traditional-bootstrap/gulpfile.js index 3149f94..d0d317f 100644 --- a/traditional-bootstrap/gulpfile.js +++ b/traditional-bootstrap/gulpfile.js @@ -68,7 +68,7 @@ const jsDashboardLibs = [ ]; // CSS libraries for the dashboard -const jsDashboardCSS = [ +const cssDashboardLibs = [ "node_modules/pickadate/lib/themes/default.css", "node_modules/pickadate/lib/themes/default.date.css", "bower_components/simplemde/dist/simplemde.min.css", @@ -151,7 +151,7 @@ gulp.task("sass-dashboard", () => { // Task for dashboard css libraries gulp.task("css-dashboard-libs", () => { - return processCSS("lib-dashboard", jsDashboardCSS); + return processCSS("lib-dashboard", cssDashboardLibs); }); // Task for public javascript