@cedarjs/vite 1.0.0-canary.12879 → 1.0.0-canary.12882

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.
@@ -355,7 +355,7 @@ var require_react_react_server_production = __commonJS({
355
355
  exports.useMemo = function(create, deps) {
356
356
  return ReactSharedInternals.H.useMemo(create, deps);
357
357
  };
358
- exports.version = "19.2.1";
358
+ exports.version = "19.2.3";
359
359
  }
360
360
  });
361
361
 
@@ -985,7 +985,7 @@ var require_react_react_server_development = __commonJS({
985
985
  exports.useMemo = function(create, deps) {
986
986
  return resolveDispatcher().useMemo(create, deps);
987
987
  };
988
- exports.version = "19.2.1";
988
+ exports.version = "19.2.3";
989
989
  })();
990
990
  }
991
991
  });
@@ -1109,7 +1109,7 @@ var require_react_dom_react_server_production = __commonJS({
1109
1109
  });
1110
1110
  } else Internals.d.m(href);
1111
1111
  };
1112
- exports.version = "19.2.1";
1112
+ exports.version = "19.2.3";
1113
1113
  }
1114
1114
  });
1115
1115
 
@@ -1296,7 +1296,7 @@ var require_react_dom_react_server_development = __commonJS({
1296
1296
  integrity: "string" === typeof options.integrity ? options.integrity : void 0
1297
1297
  })) : Internals.d.m(href));
1298
1298
  };
1299
- exports.version = "19.2.1";
1299
+ exports.version = "19.2.3";
1300
1300
  })();
1301
1301
  }
1302
1302
  });
@@ -3028,8 +3028,9 @@ var require_react_server_dom_webpack_server_node_production = __commonJS({
3028
3028
  switch (this.status) {
3029
3029
  case "fulfilled":
3030
3030
  if ("function" === typeof resolve) {
3031
- for (var inspectedValue = this.value; inspectedValue instanceof ReactPromise; ) {
3032
- if (inspectedValue === this) {
3031
+ for (var inspectedValue = this.value, cycleProtection = 0; inspectedValue instanceof ReactPromise; ) {
3032
+ cycleProtection++;
3033
+ if (inspectedValue === this || 1e3 < cycleProtection) {
3033
3034
  "function" === typeof reject && reject(Error("Cannot have cyclic thenables."));
3034
3035
  return;
3035
3036
  }
@@ -8369,8 +8370,9 @@ var require_react_server_dom_webpack_server_node_development = __commonJS({
8369
8370
  switch (this.status) {
8370
8371
  case "fulfilled":
8371
8372
  if ("function" === typeof resolve) {
8372
- for (var inspectedValue = this.value; inspectedValue instanceof ReactPromise; ) {
8373
- if (inspectedValue === this) {
8373
+ for (var inspectedValue = this.value, cycleProtection = 0; inspectedValue instanceof ReactPromise; ) {
8374
+ cycleProtection++;
8375
+ if (inspectedValue === this || 1e3 < cycleProtection) {
8374
8376
  "function" === typeof reject && reject(Error("Cannot have cyclic thenables."));
8375
8377
  return;
8376
8378
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/vite",
3
- "version": "1.0.0-canary.12879+2298eed48",
3
+ "version": "1.0.0-canary.12882+8f22ba0e8",
4
4
  "description": "Vite configuration package for CedarJS",
5
5
  "repository": {
6
6
  "type": "git",
@@ -64,14 +64,14 @@
64
64
  "@babel/generator": "7.27.5",
65
65
  "@babel/parser": "7.27.5",
66
66
  "@babel/traverse": "7.27.4",
67
- "@cedarjs/auth": "1.0.0-canary.12879",
68
- "@cedarjs/babel-config": "1.0.0-canary.12879",
69
- "@cedarjs/cookie-jar": "1.0.0-canary.12879",
70
- "@cedarjs/internal": "1.0.0-canary.12879",
71
- "@cedarjs/project-config": "1.0.0-canary.12879",
72
- "@cedarjs/server-store": "1.0.0-canary.12879",
73
- "@cedarjs/testing": "1.0.0-canary.12879",
74
- "@cedarjs/web": "1.0.0-canary.12879",
67
+ "@cedarjs/auth": "1.0.0-canary.12882",
68
+ "@cedarjs/babel-config": "1.0.0-canary.12882",
69
+ "@cedarjs/cookie-jar": "1.0.0-canary.12882",
70
+ "@cedarjs/internal": "1.0.0-canary.12882",
71
+ "@cedarjs/project-config": "1.0.0-canary.12882",
72
+ "@cedarjs/server-store": "1.0.0-canary.12882",
73
+ "@cedarjs/testing": "1.0.0-canary.12882",
74
+ "@cedarjs/web": "1.0.0-canary.12882",
75
75
  "@swc/core": "1.13.5",
76
76
  "@vitejs/plugin-react": "4.3.4",
77
77
  "@whatwg-node/fetch": "0.9.21",
@@ -88,8 +88,8 @@
88
88
  "fs-extra": "11.2.0",
89
89
  "http-proxy-middleware": "3.0.5",
90
90
  "isbot": "5.1.32",
91
- "react": "19.2.1",
92
- "react-server-dom-webpack": "19.2.2",
91
+ "react": "19.2.3",
92
+ "react-server-dom-webpack": "19.2.3",
93
93
  "rimraf": "6.0.1",
94
94
  "vite": "5.4.19",
95
95
  "vite-plugin-cjs-interop": "2.2.0",
@@ -118,5 +118,5 @@
118
118
  "publishConfig": {
119
119
  "access": "public"
120
120
  },
121
- "gitHead": "2298eed4841dc24ea8a959a482de2f0ef5059116"
121
+ "gitHead": "8f22ba0e8dcc98b704a4d2f7601898f5015ebb53"
122
122
  }