|
|
@ -11,17 +11,21 @@ const browserSync = require('browser-sync').create(); |
|
|
|
const reload = browserSync.reload; |
|
|
|
|
|
|
|
let srcPath = "src" |
|
|
|
let distPath = "node_modules/.gcache" |
|
|
|
// let distPath = "dist"
|
|
|
|
|
|
|
|
let isProd = process.env.NODE_ENV === "production" |
|
|
|
|
|
|
|
let distPath = isProd?"dist":"node_modules/.gcache" |
|
|
|
|
|
|
|
let pageName = "about" |
|
|
|
|
|
|
|
/** |
|
|
|
* 删除输出文件夹目录 |
|
|
|
*/ |
|
|
|
function remove() { |
|
|
|
return del(['dist/**/*']); |
|
|
|
return del([distPath+'/**/*']); |
|
|
|
} |
|
|
|
function removeStatic() { |
|
|
|
return del(['dist/static/**/*']); |
|
|
|
return del([distPath+'/static/**/*']); |
|
|
|
} |
|
|
|
|
|
|
|
const exculde = `!${srcPath}/**/__*/**` |
|
|
@ -66,14 +70,14 @@ function pageFn(name="index") { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
let task = series(remove,static, common, parallel(asset("index")),parallel(pageFn("index"))) |
|
|
|
/** |
|
|
|
* 开发时监听 |
|
|
|
*/ |
|
|
|
function watchTask() { |
|
|
|
browserSync.init({ |
|
|
|
startPath: `/${pageName}.html`, |
|
|
|
server: { |
|
|
|
baseDir: `./${distPath}` |
|
|
|
baseDir: `./${distPath}`, |
|
|
|
} |
|
|
|
}); |
|
|
|
watch([`${srcPath}/static/**/*`], series(removeStatic, static)) |
|
|
@ -84,18 +88,18 @@ function watchTask() { |
|
|
|
.on("add", reload) |
|
|
|
.on("change", reload) |
|
|
|
.on("unlink", reload) |
|
|
|
watch([`${srcPath}/css/**/*`,`${srcPath}/js/**/*`], asset("index")) |
|
|
|
watch([`${srcPath}/css/**/*`,`${srcPath}/js/**/*`], asset(pageName)) |
|
|
|
.on("add", reload) |
|
|
|
.on("change", reload) |
|
|
|
.on("unlink", reload) |
|
|
|
watch([`${srcPath}/html/**/*`], pageFn("index")) |
|
|
|
watch([`${srcPath}/html/**/*`], pageFn(pageName)) |
|
|
|
.on("add", reload) |
|
|
|
.on("change", reload) |
|
|
|
.on("unlink", reload) |
|
|
|
} |
|
|
|
|
|
|
|
exports.watch = series(task,watchTask) |
|
|
|
exports.default = task |
|
|
|
exports.watch = series(remove,static, common,parallel(asset(pageName)),parallel(pageFn(pageName)),watchTask) |
|
|
|
exports.default = series(remove,static, common, parallel(asset("index"), asset("about")),parallel(pageFn("index"), pageFn("about"))) |
|
|
|
|
|
|
|
exports.index = series(remove, static, common, asset("index"), pageFn("index")) |
|
|
|
exports.about = series(remove, static, common, asset("about"), pageFn("about")) |