@anmol0493/fullstack-app 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/scripts/setup.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anmol0493/fullstack-app",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
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
@@ -4,7 +4,7 @@ import * as fs from 'fs';
4
4
  import * as path from 'path';
5
5
  import enquirer from 'enquirer'; // Install enquirer: npm install enquirer
6
6
  const { prompt } = enquirer;
7
- import { execa } from 'execa'; // Install execa: npm install execa
7
+ // import { execa } from 'execa'; // Install execa: npm install execa
8
8
  import { fileURLToPath } from 'url';
9
9
  import { dirname } from 'path';
10
10