fix(cli): should compile es/index.js

This commit is contained in:
陈嘉涵 2019-12-20 17:32:00 +08:00
parent f68a1f2512
commit be0e44904f

View File

@ -147,13 +147,15 @@ async function buildPackageEntry() {
pathResolver: (path: string) => `./${relative(SRC_DIR, path)}`
});
setModuleEnv('esmodule');
await compileJs(esEntryFile, { reloadConfig: true });
genPacakgeStyle({
outputPath: styleEntryFile,
pathResolver: (path: string) => path.replace(SRC_DIR, '.')
});
setModuleEnv('commonjs');
await copy(esEntryFile, libEntryFile);
await compileJs(libEntryFile, { reloadConfig: true });
await compileStyle(styleEntryFile);