mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-06 03:58:05 +08:00
53 lines
1.0 KiB
TypeScript
53 lines
1.0 KiB
TypeScript
import { IApi } from 'dumi';
|
|
import { join } from 'path';
|
|
import { readFileSync } from 'fs';
|
|
|
|
export default (api: IApi) => {
|
|
const {
|
|
paths,
|
|
utils: { Mustache, winPath, lodash },
|
|
} = api;
|
|
|
|
api.describe({
|
|
key: 'valine',
|
|
config: {
|
|
default: {
|
|
el: '#vcomments',
|
|
appId: '',
|
|
appKey: '',
|
|
},
|
|
schema(joi) {
|
|
return joi.object({
|
|
el: joi.string(),
|
|
appId: joi.string(),
|
|
appKey: joi.string(),
|
|
});
|
|
},
|
|
},
|
|
});
|
|
|
|
// 生成临时文件
|
|
api.onGenerateFiles(async () => {
|
|
// Comment.tsx
|
|
const selectLang = readFileSync(join(__dirname, 'Comment.tpl'), 'utf-8');
|
|
|
|
const { appId, appKey, el = '#vcomments' } = api.userConfig.valine;
|
|
|
|
api.writeTmpFile({
|
|
path: 'plugin-valine/Comment.tsx',
|
|
content: Mustache.render(selectLang, {
|
|
el: el,
|
|
appId: appId,
|
|
appKey: appKey,
|
|
}),
|
|
});
|
|
});
|
|
|
|
api.addUmiExports(() => {
|
|
return {
|
|
exportAll: true,
|
|
source: `../plugin-valine/Comment`,
|
|
};
|
|
});
|
|
};
|