tinacms 0.0.0-87b53d0-20241003010954 → 0.0.0-a690e47-20241003005744
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/dist/index.js +1 -4
- package/dist/index.mjs +1 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -4605,10 +4605,7 @@ var __publicField = (obj, key, value) => {
|
|
|
4605
4605
|
edges: response.collection.documents.edges
|
|
4606
4606
|
};
|
|
4607
4607
|
} catch (e) {
|
|
4608
|
-
console.error(
|
|
4609
|
-
"Exception thrown while building and running GraphQL query: ",
|
|
4610
|
-
e
|
|
4611
|
-
);
|
|
4608
|
+
console.error("Unhandle exception:", e);
|
|
4612
4609
|
return {
|
|
4613
4610
|
collection,
|
|
4614
4611
|
edges: []
|
package/dist/index.mjs
CHANGED
|
@@ -4628,10 +4628,7 @@ const useGetOptionSets = (cms, collections, collectionFilter) => {
|
|
|
4628
4628
|
edges: response.collection.documents.edges
|
|
4629
4629
|
};
|
|
4630
4630
|
} catch (e) {
|
|
4631
|
-
console.error(
|
|
4632
|
-
"Exception thrown while building and running GraphQL query: ",
|
|
4633
|
-
e
|
|
4634
|
-
);
|
|
4631
|
+
console.error("Unhandle exception:", e);
|
|
4635
4632
|
return {
|
|
4636
4633
|
collection,
|
|
4637
4634
|
edges: []
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinacms",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-a690e47-20241003005744",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -127,9 +127,9 @@
|
|
|
127
127
|
"webfontloader": "1.6.28",
|
|
128
128
|
"yup": "^1.4.0",
|
|
129
129
|
"zod": "^3.23.8",
|
|
130
|
-
"@tinacms/mdx": "1.4.4",
|
|
131
130
|
"@tinacms/schema-tools": "1.6.4",
|
|
132
|
-
"@tinacms/search": "1.0.31"
|
|
131
|
+
"@tinacms/search": "1.0.31",
|
|
132
|
+
"@tinacms/mdx": "1.4.4"
|
|
133
133
|
},
|
|
134
134
|
"devDependencies": {
|
|
135
135
|
"@graphql-tools/utils": "^10.5.4",
|