From 1c6560afa195f6b5c53e21dd9546d768e2f1b262 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Sun, 30 Apr 2023 01:12:43 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=86=E8=B0=83=20task=20=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E7=9A=84=E6=96=87=E5=AD=97=E9=97=B4=E8=B7=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gulpfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 64663816..f663678b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -136,11 +136,11 @@ exports.laydate = () => { // gulp laydate // js return gulp.src(['./src/layui.js', './src/modules/{lay,laydate}.js']) .pipe(replace('win.layui =', 'var layui =')) // 将 layui 替换为局部变量 - .pipe(replace('}(window); //gulp build: layui-footer', '')) // 替换 layui.js 的落脚 - .pipe(replace(';!function(window){ //gulp build: lay-header', '')) // 替换 lay.js 的头部 - .pipe(replace('}(window, window.document); //gulp build: lay-footer', '')) // 替换 lay.js 的落脚 + .pipe(replace('}(window); // gulp build: layui-footer', '')) // 替换 layui.js 的落脚 + .pipe(replace(';!function(window){ // gulp build: lay-header', '')) // 替换 lay.js 的头部 + .pipe(replace('}(window, window.document); // gulp build: lay-footer', '')) // 替换 lay.js 的落脚 .pipe(concat('laydate.js', {newLine: ''})) - .pipe(replace(';!function(window, document){ //gulp build: laydate-header', '')) // 替换 laydate.js 的头部 + .pipe(replace(';!function(window, document){ // gulp build: laydate-header', '')) // 替换 laydate.js 的头部 .pipe(header.apply(null, comment)) // 追加头部 .pipe(gulp.dest(dest + 'src')); };