Skip to content

Commit

Permalink
Merge pull request #15 from Next2D/develop
Browse files Browse the repository at this point in the history
JavaScriptのテンプレートに対応
  • Loading branch information
ienaga authored Nov 11, 2023
2 parents 92543e8 + 4cbd61b commit 6c81cc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@next2d/builder",
"version": "0.0.7",
"version": "0.0.8",
"description": "Multi-platform builder for Next2d Framework, supporting export to various platforms such as macOS, Windows, iOS, Android and Web(HTML)",
"author": "Toshiyuki Ienaga <ienaga@next2d.app>",
"license": "MIT",
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,14 @@ const loadConfig = (): Promise<void> =>
);
}

const ext: string = fs.existsSync(`${process.cwd()}/vite.config.ts`) ? "ts" : "js";

const config: any = await loadConfigFromFile(
{
"command": "build",
"mode": "build"
},
`${process.cwd()}/vite.config.ts`
`${process.cwd()}/vite.config.${ext}`
);

// update config
Expand Down

0 comments on commit 6c81cc8

Please sign in to comment.