@anmol0493/fullstack-app 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -20,5 +20,5 @@ This is a **full-stack template** designed to help developers quickly bootstrap
20
20
 
21
21
  ### Installation
22
22
  - ```bash
23
- npx @anmol040903/fullstack-app my-project
23
+ npx @anmol0493/fullstack-app my-project
24
24
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anmol0493/fullstack-app",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A full-stack template with Vite React frontend and Express/NestJS backend options.",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/scripts/setup.js CHANGED
@@ -65,12 +65,12 @@ if (projectName === '.') {
65
65
  fs.mkdirSync(backendTargetDir, { recursive: true });
66
66
  fs.cpSync(backendSourceDir, backendTargetDir, { recursive: true });
67
67
 
68
- // Step 3: Install dependencies for frontend and backend
69
- console.log('Installing dependencies...');
70
- process.chdir(targetDir); // Navigate to the new project directory
68
+ // // Step 3: Install dependencies for frontend and backend
69
+ // console.log('Installing dependencies...');
70
+ // process.chdir(targetDir); // Navigate to the new project directory
71
71
 
72
- await execa('npm', ['install'], { cwd: path.join(targetDir, 'frontend'), stdio: 'inherit' });
73
- await execa('npm', ['install'], { cwd: backendTargetDir, stdio: 'inherit' });
72
+ // await execa('npm', ['install'], { cwd: path.join(targetDir, 'frontend'), stdio: 'inherit' });
73
+ // await execa('npm', ['install'], { cwd: backendTargetDir, stdio: 'inherit' });
74
74
 
75
75
  console.log(`Project ${projectName} created successfully!`);
76
76
  } catch (error) {