1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-23 13:23:18 +02:00

feat(core): update and cleanup default theme for upcoming 0.9.6 release #307

This commit is contained in:
Awilum
2019-11-29 02:23:01 +03:00
parent a31346bdbf
commit 7d2829f450

View File

@@ -17,16 +17,10 @@ function moveBootstrapCss() {
.pipe(dest('assets/dist/css/tmp'));
}
function moveSimpleLightboxCss() {
return src('node_modules/simplelightbox/dist/simplelightbox.min.css')
.pipe(concat('3.min.css'))
.pipe(dest('assets/dist/css/tmp'));
}
function buldDefaultCss() {
return src('assets/scss/default.scss')
.pipe(sass().on('error', sass.logError))
.pipe(concat('4.min.css'))
.pipe(concat('2.min.css'))
.pipe(dest('assets/dist/css/tmp'));
}
@@ -76,12 +70,10 @@ function cleanTmpJs() {
}
exports.default = series(moveBootstrapCss,
moveSimpleLightboxCss,
buldDefaultCss,
mergeCss,
cleanTmpCss,
moveJqueryJs,
moveBootstrapJs,
moveSimpleLightboxJs,
mergeJs,
cleanTmpJs);