parent
e5a76f21ab
commit
5b3a976fd3
|
@ -295,8 +295,6 @@ export default async function createServer(root = '', conf = {}) {
|
|||
PORT,
|
||||
DEPLOY_PATH
|
||||
)
|
||||
})
|
||||
|
||||
chokidar
|
||||
.watch([SOURCE_DIR, PUBLIC_DIR, join(root, './index.html')])
|
||||
.on('all', (act, filePath) => {
|
||||
|
@ -333,7 +331,10 @@ export default async function createServer(root = '', conf = {}) {
|
|||
} else {
|
||||
ws.send({
|
||||
action: 'render',
|
||||
data: { path: file.replace(/\\/g, '/'), content: tmp.css }
|
||||
data: {
|
||||
path: file.replace(/\\/g, '/'),
|
||||
content: tmp.css
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -351,4 +352,5 @@ export default async function createServer(root = '', conf = {}) {
|
|||
.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