remove unnecessary async keyword

master
Brad Cornes 2021-05-04 11:23:46 +01:00
parent ce761ba6bc
commit f729d57073
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ async function createProjectService(
tryRebuild()
}
})
.on('change', async (file) => {
.on('change', (file) => {
if (!state.enabled || minimatch(file, '**/package.json')) {
tryInit()
} else {