parent
e5a76f21ab
commit
5b3a976fd3
|
@ -295,8 +295,6 @@ export default async function createServer(root = '', conf = {}) {
|
||||||
PORT,
|
PORT,
|
||||||
DEPLOY_PATH
|
DEPLOY_PATH
|
||||||
)
|
)
|
||||||
})
|
|
||||||
|
|
||||||
chokidar
|
chokidar
|
||||||
.watch([SOURCE_DIR, PUBLIC_DIR, join(root, './index.html')])
|
.watch([SOURCE_DIR, PUBLIC_DIR, join(root, './index.html')])
|
||||||
.on('all', (act, filePath) => {
|
.on('all', (act, filePath) => {
|
||||||
|
@ -333,7 +331,10 @@ export default async function createServer(root = '', conf = {}) {
|
||||||
} else {
|
} else {
|
||||||
ws.send({
|
ws.send({
|
||||||
action: 'render',
|
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', () => {
|
.on('ready', () => {
|
||||||
ready = true
|
ready = true
|
||||||
})
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "fite",
|
"name": "fite",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.6.1",
|
"version": "0.6.2",
|
||||||
"bin": {
|
"bin": {
|
||||||
"fite": "index.js"
|
"fite": "index.js"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue