fix: 监听icons文件夹变更,进行重新编译

This commit is contained in:
bac-joker 2020-12-25 20:49:29 +08:00
parent 9b52d18b19
commit 5beef07281
3 changed files with 6 additions and 4 deletions

View File

@ -1,9 +1,9 @@
{{#ICON_NAMES}}
import smile from './icons/{{.}}';
import {{.}} from './icons/{{.}}';
{{/ICON_NAMES}}
export default {
{{#ICON_NAMES}}
{{.}}
{{.}},
{{/ICON_NAMES}}
};

View File

@ -17,7 +17,9 @@ export default (api) => {
const namespace = 'plugin-icon';
const absRuntimeFilePath = join(namespace, 'runtime.js');
// TODO 监听 icons 文件变更,重新生成文件
// 监听 icons 文件变更,重新生成文件
api.addTmpGenerateWatcherPaths(() => join(api.paths.absSrcPath, 'icons'));
api.onGenerateFiles(async () => {
const base = join(api.paths.absSrcPath, 'icons');
const iconFiles = api.utils.glob.sync('**/*', {

View File

@ -32,7 +32,7 @@ export default async ({ api, watch }) => {
'all',
lodash.throttle(async () => {
await generate();
}, 100),
}, 100)
);
}