npmrun 3 years ago
parent
commit
f659a47d77
  1. 1
      gulpfile.js/config.js
  2. 10
      gulpfile.js/index.js
  3. 6
      gulpfile.js/util.js
  4. 0
      readme.md
  5. 6
      src/css/index/index.less
  6. 2
      src/html/__include/header.pug
  7. 2
      src/html/index.pug

1
gulpfile.js/config.js

@ -0,0 +1 @@
exports.srcPath = 'src'

10
gulpfile.js/index.js

@ -11,7 +11,7 @@ const { getPages } = require('./util');
const browserSync = require('browser-sync').create();
const reload = browserSync.reload;
let srcPath = "src"
const { srcPath } = require("./config")
let isProd = process.env.NODE_ENV === "production"
@ -121,10 +121,10 @@ function watchTask() {
.on("change", reload)
.on("unlink", reload)
})
// watch([`${srcPath}/html/**/*`], allTask(pageFn))
// .on("add", reload)
// .on("change", reload)
// .on("unlink", reload)
watch([`${srcPath}/html/__**/*`], allTask(pageFn))
.on("add", reload)
.on("change", reload)
.on("unlink", reload)
}
exports.watch = series(remove,static, common, allTask(asset), allTask(pageFn), watchTask)

6
gulpfile.js/util.js

@ -1,9 +1,11 @@
const glob = require('glob')
const path = require('path')
const { srcPath } = require("./config")
function getPages (exclude = []) {
let pageList = glob.sync(path.resolve(process.cwd(), "src/html/*.pug"), {
ignore: path.resolve(process.cwd(), "src/**/__*/**")
let pageList = glob.sync(path.resolve(process.cwd(), srcPath + "/html/*.pug"), {
ignore: path.resolve(process.cwd(), srcPath + "/**/__*/**")
})
pageList = pageList.map(v => {
let leftIndex = v.lastIndexOf('/')

0
readme.md

6
src/css/index/index.less

@ -72,7 +72,7 @@
.card{
color: #333333;
height: 70px;
margin: 8px 10px;
margin: 0 10px 8px;
background-color: rgba(255, 254, 248, 0.44);
border-radius: 4px;
padding: 5px 10px;
@ -132,6 +132,10 @@
}
.search-box{
display: inline-block;
text-align: center;
display: flex;
justify-content: center;
.input-wrapper{
display: flex;
align-items: center;

2
src/html/__include/header.pug

@ -1,6 +1,6 @@
-
var menulist = [
{text: "首页", path: "#"},
{text: "首页", path: "/"},
{text: "Demo", path: "/demo"},
{text: "关于", path: "/about"},
];

2
src/html/index.pug

@ -21,7 +21,7 @@ block content
label(for="search").icon
include __include/icon/search
input(type="search" placeholder="请输入搜索" id="search")
.row(style="margin: 0 -10px;")
.row(style="margin: 8px -10px 0;")
.col-lg-6.col-md-8.col-xs-12.col-6
a(href="#").card
.card__left

Loading…
Cancel
Save