加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gulpfile.js 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
Guanngxu 提交于 2022-08-17 13:16 . feat: change avtor and id_card img
const gulp = require('gulp')
const nodemon = require('gulp-nodemon')
const browserSync = require('browser-sync').create()
const less = require('gulp-less')
gulp.task('less', () => {
return gulp.src('./assets/styles/main.less')
.pipe(less())
.pipe(gulp.dest('./styles'))
})
gulp.task('copy_media', () => {
return gulp.src('./assets/media/**/*')
.pipe(gulp.dest('./media'))
})
gulp.task('gulp_nodemon', () => {
nodemon({
script: 'app.js' // this is where my express server is
, ext: 'js html css ejs less' // nodemon watches *.js, *.html, *.css, *.ejs, *.less files
, env: { 'NODE_ENV': 'development' }
})
})
gulp.task('sync', () => {
browserSync.init({
port: 3002, // this can be any port, it will show our app
proxy: 'http://localhost:3001/', // this is the port where express server works
ui: { port: 3003 }, // UI, can be any port
reloadDelay: 1000 // Important, otherwise syncing will not work
})
gulp.watch([
'./assets/media/**/*'
]).on('change', () => {
return gulp.src('./assets/media/**/*')
.pipe(gulp.dest('./media'))
})
gulp.watch([
'./**/*.less',
]).on('change', () => {
return gulp.src('./assets/styles/main.less')
.pipe(less())
.pipe(gulp.dest('./styles'))
})
gulp.watch([
'./**/*.js',
'./**/*.html',
'./**/*.css',
'./**/*.ejs'
]).on("change", browserSync.reload)
});
// gulp.task('default', ['gulp_nodemon', 'sync'])
gulp.task('default', gulp.parallel('gulp_nodemon', 'copy_media', 'less', 'sync'))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化