create-tina-app 2.1.8 → 2.1.9

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/dist/index.js +1 -1
  2. package/package.json +5 -3
package/dist/index.js CHANGED
@@ -506,7 +506,7 @@ import { Command } from "commander";
506
506
 
507
507
  // package.json
508
508
  var name = "create-tina-app";
509
- var version = "2.1.8";
509
+ var version = "2.1.9";
510
510
 
511
511
  // src/util/packageManagers.ts
512
512
  var PKG_MANAGERS = ["pnpm", "yarn", "bun", "npm"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tina-app",
3
- "version": "2.1.8",
3
+ "version": "2.1.9",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -8,7 +8,6 @@
8
8
  "examples",
9
9
  "bin/*"
10
10
  ],
11
- "bin": "bin/create-tina-app",
12
11
  "typings": "dist/index.d.ts",
13
12
  "license": "Apache-2.0",
14
13
  "buildConfig": {
@@ -36,7 +35,7 @@
36
35
  "@types/prompts": "^2.4.9",
37
36
  "@types/tar": "6.1.13",
38
37
  "typescript": "^5.7.3",
39
- "@tinacms/scripts": "1.6.1"
38
+ "@tinacms/scripts": "1.6.2"
40
39
  },
41
40
  "dependencies": {
42
41
  "chalk": "^5.4.1",
@@ -53,5 +52,8 @@
53
52
  "types": "pnpm tsc",
54
53
  "build": "tinacms-scripts build",
55
54
  "test-run-bin": "pnpm create-tina-app"
55
+ },
56
+ "bin": {
57
+ "create-tina-app": "bin/create-tina-app"
56
58
  }
57
59
  }