create-ts-express-app 1.0.2 → 1.1.0

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/bin/cli.js +1 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -10,7 +10,7 @@ const projectName = process.argv[2] || 'ts-express-app';
10
10
  const targetDir = path.join(process.cwd(), projectName);
11
11
 
12
12
  // Source template directory (relative to this script)
13
- const templateDir = path.join(__dirname, '..', 'templates');
13
+ const templateDir = path.join(__dirname, '..', 'template');
14
14
 
15
15
  console.log('Debug info:');
16
16
  console.log(`Script location: ${__dirname}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ts-express-app",
3
- "version": "1.0.2",
3
+ "version": "1.1.0",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "create-ts-express-app": "bin/cli.js"