@tinacms/app 1.2.0 → 1.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @tinacms/app
2
2
 
3
+ ## 1.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 5fcef561d: - Pin vite version
8
+ - Adds react plugin so that we no longer get a 404 on react /@react-refresh
9
+ - Adds transform ts and tsx files in build as well as dev
10
+ - 8fc99059f: Fix main export field for @tinacms/app
11
+ - c48326846: Move --skipSDK into config property: `client.skip = true`
12
+ - Updated dependencies [5fcef561d]
13
+ - Updated dependencies [9a8074889]
14
+ - Updated dependencies [d0c4801b7]
15
+ - @tinacms/mdx@1.3.6
16
+ - tinacms@1.4.1
17
+ - @tinacms/toolkit@1.6.1
18
+
3
19
  ## 1.2.0
4
20
 
5
21
  ### Minor Changes
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@tinacms/app",
3
- "version": "1.2.0",
4
- "type": "module",
5
- "main": "index.html",
3
+ "version": "1.2.1",
4
+ "main": "src/main.tsx",
6
5
  "license": "Apache-2.0",
7
6
  "devDependencies": {
8
7
  "@types/react": "17.0.2",
@@ -13,8 +12,8 @@
13
12
  "@graphiql/toolkit": "^0.8.2",
14
13
  "@headlessui/react": "1.6.6",
15
14
  "@heroicons/react": "1.0.6",
16
- "@tinacms/mdx": "1.3.5",
17
- "@tinacms/toolkit": "1.6.0",
15
+ "@tinacms/mdx": "1.3.6",
16
+ "@tinacms/toolkit": "1.6.1",
18
17
  "@xstate/react": "3.0.0",
19
18
  "final-form": "4.20.7",
20
19
  "graphiql": "^2.4.0",
@@ -25,11 +24,10 @@
25
24
  "react-dom": "17.0.2",
26
25
  "react-is": "17.0.2",
27
26
  "react-router-dom": "6.3.0",
28
- "tinacms": "1.4.0",
27
+ "tinacms": "1.4.1",
29
28
  "xstate": "4.32.1",
30
29
  "tailwindcss": "^3.2.7",
31
30
  "typescript": "^4.6.4",
32
- "vite": "3.1.8",
33
31
  "@monaco-editor/react": "4.4.5",
34
32
  "monaco-editor": "0.31.0",
35
33
  "webfontloader": "1.6.28"
@@ -73,7 +73,7 @@ const Playground = () => {
73
73
  <div className="graphiql-doc-explorer-content">
74
74
  <div className="graphiql-markdown-description">
75
75
  {noAutoQueries
76
- ? 'No autoqueries found, the Tina dev or build command was likely run with the "--noSDK" option. Learn about how to generate autoqeries.'
76
+ ? 'No autoqueries found. The Tina config is likely set to "client.skip = true". Learn about how to generate autoqueries.'
77
77
  : "Tina's autogenerated queries can be found here as well as any queries you may have defined yourself."}{' '}
78
78
  <a href="https://tina.io/docs/data-fetching/custom-queries/">
79
79
  Learn more here