2 Star 8 Fork 134

夜星海/BearAdmin

forked from hswuhao/BearAdmin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gulpfile.js 3.12 KB
一键复制 编辑 原始数据 按行查看 历史
于破熊 提交于 2017-08-07 18:58 . '第一次提交'
/**
* Created by Administrator on 2017/5/16.
*/
var gulp = require('gulp'),
rename = require('gulp-rename'),
notify = require('gulp-notify'),
sass = require('gulp-sass'),
minifyCss = require('gulp-minify-css'),
plumber = require('gulp-plumber'),
babel = require('gulp-babel'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
clearnHtml = require("gulp-cleanhtml"),
imagemin = require('gulp-imagemin'),
copy = require('gulp-contrib-copy'),
browserSync = require('browser-sync').create(),
reload = browserSync.reload;
// 定义源代码的目录和编译压缩后的目录
var src = 'resources/admin',
dist = 'public/static/admin';
// 编译全部scss 并压缩
gulp.task('css', function () {
gulp.src(src + '/**/*.scss')
.pipe(sass())
.pipe(minifyCss())
.pipe(gulp.dest(dist))
})
// 编译全部js 并压缩
/*gulp.task('js', function () {
gulp.src(src + '/!**!/!*.js')
.pipe(plumber())
.pipe(babel({
presets: ['es2015']
}))
.pipe(uglify())
.pipe(gulp.dest(dist));
});*/
gulp.task('js', function() {
return gulp.src(
[src + '/plugins/jQuery/jquery-2.2.3.min.js',
src + '/bootstrap/js/bootstrap.min.js',
src + '/js/app.min.js',
src + '/js/admin.js'])
.pipe(concat('app.js'))
.pipe(uglify())
.pipe(gulp.dest(dist+'/js'))
.pipe(notify({ message: 'js task ok' }));
});
//这个地方还未修改
/*gulp.task("js", function () {
// 把1.js和2.js合并压缩为main.js,输出到dest/js目录下
gulp.src([src + '/plugins/jQuery/jquery-2.2.3.min.js',src + '/bootstrap/js/bootstrap.min.js',src + '/js/app.min.js', src + '/js/admin.js']).pipe(concat('app1.min.js')).pipe(uglify()).pipe(gulp.dest(dist+'/js'));
})*/
// 压缩全部html
gulp.task('html', function () {
gulp.src(src + '/**/*.+(html|tpl)')
.pipe(clearnHtml())
.pipe(gulp.dest(dist));
});
// 压缩全部image
gulp.task('image', function () {
gulp.src([src + '/**/*.+(jpg|jpeg|png|gif|bmp)'])
.pipe(imagemin())
.pipe(gulp.dest(dist));
});
// 其他不编译的文件直接copy
gulp.task('copy', function () {
gulp.src(src + '/**/*.!(jpg|jpeg|png|gif|bmp|scss|js|html|tpl)')
.pipe(copy())
.pipe(gulp.dest(dist));
});
// 自动刷新
gulp.task('server', function () {
browserSync.init({
proxy: "localhost:91", // 指定代理url
notify: false // 刷新不弹出提示
});
// 监听scss文件编译
gulp.watch(src + '/**/*.scss', ['css']);
// 监听其他不编译的文件 有变化直接copy
gulp.watch(src + '/**/*.!(jpg|jpeg|png|gif|bmp|scss|js|html)', ['copy']);
// 监听html文件变化后刷新页面
gulp.watch(src + "/**/*.js", ['js']).on("change", reload);
// 监听html文件变化后刷新页面
gulp.watch(src + "/**/*.+(html|tpl)", ['html']).on("change", reload);
// 监听css文件变化后刷新页面
gulp.watch(dist + "/**/*.css").on("change", reload);
});
// 监听事件
gulp.task('default', ['css', 'js', 'image', 'html', 'copy', 'server'])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/91huifu/BearAdmin.git
git@gitee.com:91huifu/BearAdmin.git
91huifu
BearAdmin
BearAdmin
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385