create-tina-app 1.1.6 → 1.2.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.
@@ -1,19 +1,19 @@
1
1
  /**
2
2
 
3
3
  */
4
- declare type BaseExample = {
4
+ type BaseExample = {
5
5
  title: string;
6
6
  description?: string;
7
7
  value: string;
8
8
  };
9
- export declare type InternalExample = BaseExample & {
9
+ export type InternalExample = BaseExample & {
10
10
  isInternal: true;
11
11
  };
12
- export declare type ExternalExample = BaseExample & {
12
+ export type ExternalExample = BaseExample & {
13
13
  isInternal: false;
14
14
  gitURL: string;
15
15
  };
16
- export declare type Example = InternalExample | ExternalExample;
16
+ export type Example = InternalExample | ExternalExample;
17
17
  export declare const EXAMPLES: Example[];
18
18
  export declare const downloadExample: (example: Example, root: string) => Promise<void>;
19
19
  export {};
package/dist/index.js CHANGED
@@ -35,7 +35,7 @@ var import_node_path = __toESM(require("path"));
35
35
 
36
36
  // package.json
37
37
  var name = "create-tina-app";
38
- var version = "1.1.6";
38
+ var version = "1.2.0";
39
39
 
40
40
  // src/util/fileUtil.ts
41
41
  var import_fs_extra = __toESM(require("fs-extra"));
@@ -1,4 +1,4 @@
1
- export declare type RepoInfo = {
1
+ export type RepoInfo = {
2
2
  username: string;
3
3
  name: string;
4
4
  branch: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tina-app",
3
- "version": "1.1.6",
3
+ "version": "1.2.0",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist",
@@ -34,8 +34,8 @@
34
34
  "@types/node": "^20.14.12",
35
35
  "@types/prompts": "^2.4.9",
36
36
  "@types/tar": "6.1.13",
37
- "typescript": "^4.6.4",
38
- "@tinacms/scripts": "1.1.6"
37
+ "typescript": "^5.5.4",
38
+ "@tinacms/scripts": "1.2.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "chalk": "4.1.2",