59 lines
1.5 KiB
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { join } from 'path';
import { readFileSync } from 'fs';
import { name } from '../package.json';
const namespace = 'plugin-{{{name}}}';
export default (api) => {
api.describe({
key: '{{{name}}}',
config: {
schema(joi) {
return joi.object();
},
default: {}
}
});
const {
utils: { Mustache }
} = api;
const absoluteFilePath = join(namespace, 'core.js');
const absRuntimeFilePath = join(namespace, 'runtime.js');
api.onGenerateFiles(() => {
// copy到临时目录webpack会编译临时目录代码
api.copyTmpFiles({
namespace,
path: join(__dirname, 'runtime'),
ignore: ['.tpl']
});
// tpl写入
api.writeTmpFile({
path: absoluteFilePath,
content: Mustache.render(
readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'),
{
}
)
});
});
if (api.builder.name === 'vite') {
// vite构建器
} else if(api.builder.name === 'webpack') {
// webpack构建器
}
//
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
//
api.addConfigType(() => ({
source: name,
}));
};