2022-02-16 11:20:17 +08:00

26 lines
702 B
TypeScript

import { COMMON_CHUNK_NAME } from '../../const/generator';
import { BuilderComponentPlugin, BuilderComponentPluginFactory, ChunkType, FileType, ICodeStruct } from '../../types';
// TODO: How to merge this logic to common deps
const pluginFactory: BuilderComponentPluginFactory<unknown> = () => {
const plugin: BuilderComponentPlugin = async (pre: ICodeStruct) => {
const next: ICodeStruct = {
...pre,
};
next.chunks.push({
type: ChunkType.STRING,
fileType: FileType.JSX,
name: COMMON_CHUNK_NAME.InternalDepsImport,
content: 'import * from \'react\';',
linkAfter: [],
});
return next;
};
return plugin;
};
export default pluginFactory;