1 Star 0 Fork 25

德古拉/Tabler

forked from Gitee 极速下载/Tabler 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
codecalm 提交于 2018-04-04 18:44 . rtl mode
var gulp = require('gulp'),
sass = require('gulp-sass'),
rename = require('gulp-rename'),
autoprefixer = require('gulp-autoprefixer'),
rtlcss = require('gulp-rtlcss'),
pckg = require('./package.json');
gulp.task('styles', function () {
return gulp.src('src/assets/scss/bundle.scss', { base: '.' })
.pipe(sass({
precision: 8,
outputStyle: 'expanded'
}).on('error', sass.logError))
.pipe(autoprefixer({
browsers: pckg.browserslist,
cascade: false
}))
.pipe(rename('dashboard.css'))
.pipe(gulp.dest('src/assets/css/'))
.pipe(rtlcss())
.pipe(rename('dashboard.rtl.css'))
.pipe(gulp.dest('src/assets/css/'));
});
gulp.task('styles-plugins', function () {
return gulp.src('src/assets/plugins/**/plugin.scss', { base: '.' })
.pipe(sass({
precision: 6,
outputStyle: 'expanded'
}).on('error', sass.logError))
.pipe(autoprefixer({
browsers: pckg.browserslist,
cascade: false
}))
.pipe(rename(function(path) {
path.extname = '.css';
}))
.pipe(gulp.dest('.'));
});
gulp.task('watch', ['styles', 'styles-plugins'], function() {
gulp.watch('src/assets/scss/**/*.scss', ['styles']);
gulp.watch('src/assets/plugins/**/*.scss', ['styles-plugins']);
});
gulp.task('build', ['styles', 'styles-plugins']);
gulp.task('default', ['build']);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/voyllente/Tabler.git
git@gitee.com:voyllente/Tabler.git
voyllente
Tabler
Tabler
master

搜索帮助