1 Star 0 Fork 0

刘宝瑞/avue2.8.25

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 976 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘宝瑞 提交于 2022-09-07 16:16 . init.
const gulp = require("gulp");
var sass = require("gulp-sass");
var autoprefixer = require("gulp-autoprefixer");
var cssmin = require("gulp-cssmin");
const webpack = require("webpack");
const webpackConf = require("./build/build.js");
// 构建webpack配置
gulp.task("webpack", async function() {
await webpack(webpackConf, function(err, stats) {
if (err) {
console.log(err);
}
});
});
// 处理样式的配置
gulp.task("compile", function() {
return gulp
.src("./styles/index.scss")
.pipe(sass.sync())
.pipe(
autoprefixer({
browsers: ["ie > 9", "last 2 versions"],
cascade: false
})
)
.pipe(cssmin())
.pipe(gulp.dest("./lib/"));
});
// 打包文件
gulp.task("build", gulp.series(["webpack", "compile"]));
// 监听文件变化
gulp.task("watch", async function() {
gulp.watch(["./src/**", "./packages/**"], gulp.series(["webpack"]));
gulp.watch(["./styles/**"], gulp.series(["compile"]));
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Lbaorui/avue2.8.25.git
git@gitee.com:Lbaorui/avue2.8.25.git
Lbaorui
avue2.8.25
avue2.8.25
master

搜索帮助