@tinacms/app 1.2.0 → 1.2.2

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,29 @@
1
1
  # @tinacms/app
2
2
 
3
+ ## 1.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0626ba381]
8
+ - tinacms@1.4.2
9
+ - @tinacms/mdx@1.3.7
10
+
11
+ ## 1.2.1
12
+
13
+ ### Patch Changes
14
+
15
+ - 5fcef561d: - Pin vite version
16
+ - Adds react plugin so that we no longer get a 404 on react /@react-refresh
17
+ - Adds transform ts and tsx files in build as well as dev
18
+ - 8fc99059f: Fix main export field for @tinacms/app
19
+ - c48326846: Move --skipSDK into config property: `client.skip = true`
20
+ - Updated dependencies [5fcef561d]
21
+ - Updated dependencies [9a8074889]
22
+ - Updated dependencies [d0c4801b7]
23
+ - @tinacms/mdx@1.3.6
24
+ - tinacms@1.4.1
25
+ - @tinacms/toolkit@1.6.1
26
+
3
27
  ## 1.2.0
4
28
 
5
29
  ### 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.2",
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.7",
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.2",
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,8 +73,8 @@ 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.'
77
- : "Tina's autogenerated queries can be found here as well as any queries you may have defined yourself."}{' '}
76
+ ? 'No auto-generated queries found, the Tina config is likely set to client.skip = true'
77
+ : "Tina's auto-generated 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
80
80
  </a>