@tinacms/app 0.0.21 → 0.0.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/app",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": {
@@ -9,60 +9,56 @@
9
9
  "require": "./dist/index.js"
10
10
  }
11
11
  },
12
- "typings": "dist/index.d.ts",
13
12
  "files": [
13
+ "appFiles",
14
14
  "dist"
15
15
  ],
16
+ "typings": "dist/index.d.ts",
16
17
  "license": "Apache-2.0",
17
18
  "buildConfig": {
18
19
  "entryPoints": [
19
20
  {
20
21
  "name": "src/index.ts",
21
22
  "target": "node"
22
- },
23
- {
24
- "name": "src/prebuild.ts",
25
- "target": "node"
26
23
  }
27
24
  ]
28
25
  },
29
26
  "devDependencies": {
30
27
  "@types/fs-extra": "^9.0.1",
31
28
  "@types/react": "17.0.2",
32
- "@types/react-dom": "17.0.2"
29
+ "@types/react-dom": "17.0.2",
30
+ "@tinacms/scripts": "0.51.3",
31
+ "tinacms": "0.69.18",
32
+ "jest": "^27.0.6"
33
33
  },
34
34
  "dependencies": {
35
- "@headlessui/react": "^1.6.6",
36
- "@heroicons/react": "^1.0.6",
35
+ "@xstate/react": "3.0.0",
36
+ "xstate": "4.32.1",
37
+ "@headlessui/react": "1.6.6",
38
+ "final-form": "4.20.7",
39
+ "graphql": "15.8.0",
40
+ "@heroicons/react": "1.0.6",
41
+ "styled-components": "5.3.5",
37
42
  "@tailwindcss/aspect-ratio": "^0.4.0",
38
43
  "@tailwindcss/line-clamp": "^0.3.1",
39
44
  "@tailwindcss/typography": "^0.5.4",
40
- "@tinacms/schema-tools": "0.1.8",
41
- "@tinacms/scripts": "0.51.1",
42
- "@vitejs/plugin-react": "^1.3.2",
43
- "@xstate/react": "^3.0.0",
45
+ "@vitejs/plugin-react": "^2.1.0",
44
46
  "autoprefixer": "^10.4.0",
45
- "final-form": "^4.20.7",
46
47
  "fs-extra": "^9.0.1",
47
- "esbuild": "^0.15.5",
48
- "graphql": "^15.1.0",
49
- "jest": "^27.0.6",
50
48
  "postcss": "^8.4.14",
51
49
  "postcss-nested": "^5.0.6",
52
50
  "react": "17.0.2",
53
51
  "react-dom": "17.0.2",
54
- "react-is": "18.2.0",
55
- "react-router-dom": "6",
56
- "styled-components": "5.3.5",
52
+ "react-is": "17.0.2",
53
+ "react-router-dom": "6.3.0",
57
54
  "tailwindcss": "^3.1.6",
58
- "tinacms": "0.69.16",
59
55
  "typescript": "^4.6.4",
60
- "vite": "2.9.15",
61
- "vite-node": "^0.23.4",
62
- "xstate": "^4.32.1"
56
+ "vite": "^3.1.3"
63
57
  },
64
58
  "scripts": {
65
59
  "types": "rm dist/index.d.ts && touch dist/index.d.ts && echo \"export declare const viteBuild: (args: any) => any\" > dist/index.d.ts",
66
- "build": "tinacms-scripts build && node dist/prebuild.js"
60
+ "build": "tinacms-scripts build",
61
+ "inline": "cd appFiles && npm --prefix ./ i --legacy-peer-deps --omit=dev --no-package-lock && cd .. && npm run unlink",
62
+ "unlink": "cd appFiles && cp -RL node_modules node_modules2 && rm -rf node_modules && mv node_modules2 node_modules"
67
63
  }
68
64
  }