mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
Add Tauri desktop app support
Adds integration with Tauri for building native desktop apps from the web frontend, including CLI option, setup scripts, initialization logic, and post-installation instructions.
This commit is contained in:
@@ -126,7 +126,7 @@ export async function createProject(options: ProjectConfig): Promise<string> {
|
||||
}
|
||||
|
||||
if (options.addons.length > 0) {
|
||||
await setupAddons(projectDir, options.addons);
|
||||
await setupAddons(projectDir, options.addons, options.packageManager);
|
||||
}
|
||||
|
||||
await updatePackageConfigurations(projectDir, options);
|
||||
@@ -138,6 +138,7 @@ export async function createProject(options: ProjectConfig): Promise<string> {
|
||||
options.packageManager,
|
||||
!options.noInstall,
|
||||
options.orm,
|
||||
options.addons,
|
||||
);
|
||||
|
||||
return projectDir;
|
||||
|
||||
Reference in New Issue
Block a user