mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-21 23:52:31 -05:00
Use a more appropriate name for the dashboard css libs
This commit is contained in:
parent
a645dc214b
commit
f89d61f977
2 changed files with 4 additions and 4 deletions
4
gulpfile.js
vendored
4
gulpfile.js
vendored
|
@ -69,7 +69,7 @@ const jsDashboardLibs = [
|
||||||
];
|
];
|
||||||
|
|
||||||
// CSS libraries for the dashboard
|
// CSS libraries for the dashboard
|
||||||
const jsDashboardCSS = [
|
const cssDashboardLibs = [
|
||||||
"node_modules/pickadate/lib/themes/default.css",
|
"node_modules/pickadate/lib/themes/default.css",
|
||||||
"node_modules/pickadate/lib/themes/default.date.css",
|
"node_modules/pickadate/lib/themes/default.date.css",
|
||||||
"bower_components/simplemde/dist/simplemde.min.css",
|
"bower_components/simplemde/dist/simplemde.min.css",
|
||||||
|
@ -171,7 +171,7 @@ gulp.task("sass-dashboard", () => {
|
||||||
|
|
||||||
// Task for dashboard css libraries
|
// Task for dashboard css libraries
|
||||||
gulp.task("css-dashboard-libs", () => {
|
gulp.task("css-dashboard-libs", () => {
|
||||||
return processCSS("lib-dashboard", jsDashboardCSS);
|
return processCSS("lib-dashboard", cssDashboardLibs);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Task for public javascript
|
// Task for public javascript
|
||||||
|
|
4
traditional-bootstrap/gulpfile.js
vendored
4
traditional-bootstrap/gulpfile.js
vendored
|
@ -68,7 +68,7 @@ const jsDashboardLibs = [
|
||||||
];
|
];
|
||||||
|
|
||||||
// CSS libraries for the dashboard
|
// CSS libraries for the dashboard
|
||||||
const jsDashboardCSS = [
|
const cssDashboardLibs = [
|
||||||
"node_modules/pickadate/lib/themes/default.css",
|
"node_modules/pickadate/lib/themes/default.css",
|
||||||
"node_modules/pickadate/lib/themes/default.date.css",
|
"node_modules/pickadate/lib/themes/default.date.css",
|
||||||
"bower_components/simplemde/dist/simplemde.min.css",
|
"bower_components/simplemde/dist/simplemde.min.css",
|
||||||
|
@ -151,7 +151,7 @@ gulp.task("sass-dashboard", () => {
|
||||||
|
|
||||||
// Task for dashboard css libraries
|
// Task for dashboard css libraries
|
||||||
gulp.task("css-dashboard-libs", () => {
|
gulp.task("css-dashboard-libs", () => {
|
||||||
return processCSS("lib-dashboard", jsDashboardCSS);
|
return processCSS("lib-dashboard", cssDashboardLibs);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Task for public javascript
|
// Task for public javascript
|
||||||
|
|
Loading…
Reference in a new issue