fix: tryNpmInstall 이후 genJS까지 실행해야 안전

This commit is contained in:
2021-09-09 00:17:27 +09:00
parent 1d516f08b3
commit 3a76d7df3a
4 changed files with 68 additions and 49 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ module.exports = (env, argv) => {
const mode = argv.mode ?? 'production';
const tsDir = resolve(__dirname, `${target}/ts/`);
const ingame_vue = {
name: 'ingame_vue',
name: `ingame_${target}_vue`,
resolve: {
extensions: [".ts", ".tsx", ".vue", ".js"],
alias: {
@@ -164,7 +164,7 @@ module.exports = (env, argv) => {
},
};
const ingame = {
name: 'ingame',
name: `ingame_${target}`,
resolve: {
extensions: [".js", ".ts", ".tsx"],
},