Add demo link in navbar and fix stack in tech showcase

This commit is contained in:
Aman Varshney
2025-03-23 18:00:26 +05:30
parent c605c7c075
commit ed401d01e9
9 changed files with 261 additions and 262 deletions

View File

@@ -22,10 +22,7 @@
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"template"
],
"files": ["dist", "template"],
"dependencies": {
"@clack/prompts": "^0.10.0",
"commander": "^13.1.0",

View File

@@ -36,7 +36,6 @@ export async function installDependencies({
s.stop("Dependencies installed successfully");
// Run Biome check if Biome or Husky is enabled
if (addons.includes("biome") || addons.includes("husky")) {
await runBiomeCheck(projectDir, packageManager);
}

View File

@@ -25,7 +25,6 @@ export async function setupTauri(
if (await fs.pathExists(clientPackageJsonPath)) {
const packageJson = await fs.readJson(clientPackageJsonPath);
// Add Tauri scripts
packageJson.scripts = {
...packageJson.scripts,
tauri: "tauri",
@@ -36,9 +35,6 @@ export async function setupTauri(
await fs.writeJson(clientPackageJsonPath, packageJson, { spaces: 2 });
}
// Initialize Tauri in the client directory
// This creates the src-tauri folder structure with necessary config files
await execa(
"npx",
[