tinacms 0.0.0-87b53d0-20241003010954 → 0.0.0-abdf668-20241008204519

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/client.js CHANGED
@@ -26,7 +26,7 @@
26
26
  return;
27
27
  }
28
28
  try {
29
- if (this.cacheDir && window === void 0 && typeof require !== "undefined") {
29
+ if (this.cacheDir && typeof window === "undefined" && typeof require !== "undefined") {
30
30
  const { NodeCache: NodeCache2 } = await Promise.resolve().then(() => nodeCache);
31
31
  this.cache = await NodeCache2(this.cacheDir);
32
32
  }
package/dist/client.mjs CHANGED
@@ -23,7 +23,7 @@ class TinaClient {
23
23
  return;
24
24
  }
25
25
  try {
26
- if (this.cacheDir && window === void 0 && typeof require !== "undefined") {
26
+ if (this.cacheDir && typeof window === "undefined" && typeof require !== "undefined") {
27
27
  const { NodeCache } = await import("./node-cache-7fa2452c.mjs");
28
28
  this.cache = await NodeCache(this.cacheDir);
29
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinacms",
3
- "version": "0.0.0-87b53d0-20241003010954",
3
+ "version": "0.0.0-abdf668-20241008204519",
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
- "@tinacms/schema-tools": "1.6.4",
132
- "@tinacms/search": "1.0.31"
130
+ "@tinacms/mdx": "0.0.0-abdf668-20241008204519",
131
+ "@tinacms/schema-tools": "0.0.0-abdf668-20241008204519",
132
+ "@tinacms/search": "0.0.0-abdf668-20241008204519"
133
133
  },
134
134
  "devDependencies": {
135
135
  "@graphql-tools/utils": "^10.5.4",