Use a more appropriate name for the dashboard css libs

This commit is contained in:
Kevin MacMartin 2018-05-24 22:57:42 -04:00
parent a645dc214b
commit f89d61f977
2 changed files with 4 additions and 4 deletions

4
gulpfile.js vendored
View file

@ -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

View file

@ -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