From 763b1f257fd65f55c2dcc0bde0b7b0d068f12cfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Wed, 31 Aug 2022 01:47:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20gulp=20=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gulpfile.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 867ae253..77f64418 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -17,11 +17,11 @@ const yargs = require('yargs'); const config = { //注释 comment: [ - '/** <%= pkg.version %> | <%= pkg.license %> Licensed */<%= js %>' + '/** v<%= pkg.version %> | <%= pkg.license %> Licensed */<%= js %>' ,{pkg: pkg, js: ';'} ] //模块 - ,modules: 'lay,laytpl,laypage,laydate,jquery,layer,util,dropdown,slider,colorpicker,element,upload,form,table,tree,transfer,carousel,rate,flow,layedit,code' + ,modules: 'lay,laytpl,laypage,laydate,jquery,layer,util,dropdown,slider,colorpicker,element,upload,form,table,tree,transfer,carousel,rate,flow,code' }; // 获取参数 @@ -60,13 +60,14 @@ const js = () => { // css const css = () => { let src = [ - './src/css/**/*.css' - ,'!./src/css/**/font.css' + './src/css/layui.css', + './src/css/modules/**/*.css', + '!./src/css/**/font.css' ]; return gulp.src(src).pipe(cleanCSS({ compatibility: 'ie8' })) - //.pipe(concat('layui.css', {newLine: ''})) + .pipe(concat('layui.css', {newLine: ''})) .pipe(gulp.dest(dest +'/css')); }; @@ -113,14 +114,13 @@ exports.rls = gulp.series(cleanRLS, rls); //release task exports.layer = () => { // gulp layer let dest = './release/layer'; - gulp.src('./src/css/modules/layer/default/*') - .pipe(gulp.dest(dest + '/src/theme/default')); + gulp.src('./src/css/modules/layer.css') + .pipe(gulp.dest(dest + '/src')); return gulp.src('./src/modules/layer.js') .pipe(gulp.dest(dest + '/src')); }; - // laydate task exports.laydate = () => { // gulp laydate let dest = './release/laydate/'; // 发行目录 @@ -131,7 +131,7 @@ exports.laydate = () => { // gulp laydate // css gulp.src('./src/css/modules/laydate.css') - .pipe(gulp.dest(dest + 'src/')); + .pipe(gulp.dest(dest + 'src')); // js return gulp.src(['./src/layui.js', './src/modules/{lay,laydate}.js'])