Hi,
When updating any file with icon scanning on, it seems to log a (debug?) message
{ path: 'components/Sidebar.vue', matched: true }
ℹ hmr update /components/Sidebar.vue?vue&type=style&index=0&lang.scss
I suspect it is coming from this code block
|
if (ctx.scanner) { |
|
const matched = ctx.scanner.isFileMatch(path) |
|
console.log({ path, matched }) |
|
ctx.scanner.extractFromCode( |
|
await fs.readFile(resolvedPath, 'utf-8').catch(() => ''), |
|
ctx.scannedIcons, |
|
) |
|
} |
that was introduced in this commit
c695667#diff-030fc083b2cbf5cf008cfc0c49bb4f1b8d97ac07f93a291d068d81b4d1416f70R202
Is there any way to disable this?
Hi,
When updating any file with icon scanning on, it seems to log a (debug?) message
I suspect it is coming from this code block
icon/src/module.ts
Lines 200 to 207 in 8ac3520
that was introduced in this commit
c695667#diff-030fc083b2cbf5cf008cfc0c49bb4f1b8d97ac07f93a291d068d81b4d1416f70R202
Is there any way to disable this?