rankrunners-cms 0.0.51 → 0.0.52

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,7 +1,7 @@
1
1
  {
2
2
  "name": "rankrunners-cms",
3
3
  "type": "module",
4
- "version": "0.0.51",
4
+ "version": "0.0.52",
5
5
  "peerDependencies": {
6
6
  "@puckeditor/core": "^0.21.2",
7
7
  "@tanstack/react-router": "^1.168.23",
@@ -198,7 +198,7 @@ function prng(seed: string, length: number) {
198
198
  }
199
199
 
200
200
  function createWorker() {
201
- return new Worker(new URL("./worker.ts", import.meta.url));
201
+ return new Worker(new URL("./worker.ts", import.meta.url), { type: "module" });
202
202
  }
203
203
 
204
204
  export function isTokenExpired(token: CapToken) {