parent
e5a76f21ab
commit
5b3a976fd3
96
lib/dev.js
96
lib/dev.js
|
@ -295,60 +295,62 @@ export default async function createServer(root = '', conf = {}) {
|
|||
PORT,
|
||||
DEPLOY_PATH
|
||||
)
|
||||
})
|
||||
chokidar
|
||||
.watch([SOURCE_DIR, PUBLIC_DIR, join(root, './index.html')])
|
||||
.on('all', (act, filePath) => {
|
||||
if (ready) {
|
||||
let file = filePath.slice(SOURCE_DIR.length)
|
||||
|
||||
chokidar
|
||||
.watch([SOURCE_DIR, PUBLIC_DIR, join(root, './index.html')])
|
||||
.on('all', (act, filePath) => {
|
||||
if (ready) {
|
||||
let file = filePath.slice(SOURCE_DIR.length)
|
||||
if (act === 'add' || act === 'change') {
|
||||
let ext = file.slice(file.lastIndexOf('.') + 1)
|
||||
|
||||
if (act === 'add' || act === 'change') {
|
||||
let ext = file.slice(file.lastIndexOf('.') + 1)
|
||||
switch (ext) {
|
||||
case 'css':
|
||||
case 'scss':
|
||||
{
|
||||
let content = fs.cat(filePath).toString()
|
||||
ws.send({
|
||||
action: 'render',
|
||||
data: { path: file.replace(/\\/g, '/'), content }
|
||||
})
|
||||
}
|
||||
break
|
||||
|
||||
switch (ext) {
|
||||
case 'css':
|
||||
case 'scss':
|
||||
{
|
||||
let content = fs.cat(filePath).toString()
|
||||
ws.send({
|
||||
action: 'render',
|
||||
data: { path: file.replace(/\\/g, '/'), content }
|
||||
})
|
||||
}
|
||||
break
|
||||
case 'vue':
|
||||
{
|
||||
let content = compileVue(filePath, conf.imports, {
|
||||
IS_MPA,
|
||||
currentPage,
|
||||
SOURCE_DIR,
|
||||
CACHE,
|
||||
DEPLOY_PATH
|
||||
})
|
||||
let tmp = CACHE[filePath]
|
||||
if (tmp.changed) {
|
||||
ws.send({ action: 'reload' })
|
||||
} else {
|
||||
ws.send({
|
||||
action: 'render',
|
||||
data: {
|
||||
path: file.replace(/\\/g, '/'),
|
||||
content: tmp.css
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
break
|
||||
|
||||
case 'vue':
|
||||
{
|
||||
let content = compileVue(filePath, conf.imports, {
|
||||
IS_MPA,
|
||||
currentPage,
|
||||
SOURCE_DIR,
|
||||
CACHE,
|
||||
DEPLOY_PATH
|
||||
})
|
||||
let tmp = CACHE[filePath]
|
||||
if (tmp.changed) {
|
||||
default:
|
||||
ws.send({ action: 'reload' })
|
||||
} else {
|
||||
ws.send({
|
||||
action: 'render',
|
||||
data: { path: file.replace(/\\/g, '/'), content: tmp.css }
|
||||
})
|
||||
}
|
||||
break
|
||||
}
|
||||
break
|
||||
|
||||
default:
|
||||
} else if (act === 'unlink' || act === 'unlinkDir') {
|
||||
ws.send({ action: 'reload' })
|
||||
break
|
||||
}
|
||||
}
|
||||
} else if (act === 'unlink' || act === 'unlinkDir') {
|
||||
ws.send({ action: 'reload' })
|
||||
}
|
||||
}
|
||||
})
|
||||
.on('ready', () => {
|
||||
ready = true
|
||||
})
|
||||
.on('ready', () => {
|
||||
ready = true
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "fite",
|
||||
"type": "module",
|
||||
"version": "0.6.1",
|
||||
"version": "0.6.2",
|
||||
"bin": {
|
||||
"fite": "index.js"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue