mirror of
https://github.com/whyour/qinglong.git
synced 2025-12-21 13:25:41 +08:00
Fix TypeScript errors in deps.ts - remove unused path parameter
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
This commit is contained in:
parent
1f1dc84483
commit
f16bbdae7c
|
|
@ -58,6 +58,6 @@ export default async (src: string = 'deps') => {
|
||||||
});
|
});
|
||||||
|
|
||||||
watcher
|
watcher
|
||||||
.on('add', (path) => linkToNodeModule(src))
|
.on('add', () => linkToNodeModule(src))
|
||||||
.on('change', (path) => linkToNodeModule(src));
|
.on('change', () => linkToNodeModule(src));
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user