remove unnecessary async keyword
parent
ce761ba6bc
commit
f729d57073
|
@ -178,7 +178,7 @@ async function createProjectService(
|
||||||
tryRebuild()
|
tryRebuild()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on('change', async (file) => {
|
.on('change', (file) => {
|
||||||
if (!state.enabled || minimatch(file, '**/package.json')) {
|
if (!state.enabled || minimatch(file, '**/package.json')) {
|
||||||
tryInit()
|
tryInit()
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue