1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

New statuses (#965)

This commit is contained in:
Paweł Kuna
2022-01-18 22:14:43 +01:00
committed by GitHub
parent 388adaec13
commit a9075f6717
32 changed files with 533 additions and 2075 deletions

View File

@@ -146,7 +146,7 @@ gulp.task('clean-jekyll', (cb) => {
* Compile SASS to CSS and move it to dist directory
*/
gulp.task('sass', () => {
return gulp
const g = gulp
.src(`${srcDir}/scss/!(_)*.scss`)
.pipe(debug())
.pipe(sass({
@@ -167,11 +167,17 @@ gulp.task('sass', () => {
.pipe(browserSync.reload({
stream: true,
}))
.pipe(rtlcss())
.pipe(rename((path) => {
path.basename += '.rtl'
}))
.pipe(gulp.dest(`${distDir}/css/`))
if (BUILD) {
g
.pipe(rtlcss())
.pipe(rename((path) => {
path.basename += '.rtl'
}))
.pipe(gulp.dest(`${distDir}/css/`))
}
return g
})
/**