@cedarjs/web 3.0.0-canary.13638 → 3.0.0-canary.13640
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.
|
@@ -129,7 +129,7 @@ const DevFatalErrorPage = (props) => {
|
|
|
129
129
|
const typeName = String(
|
|
130
130
|
err["type"] || err.constructor?.name || typeof err
|
|
131
131
|
);
|
|
132
|
-
const msg = String(err
|
|
132
|
+
const msg = String(err?.message);
|
|
133
133
|
const FileRef = stack.items[0] ? /* @__PURE__ */ import_react.default.createElement("a", { href: toVSCodeURL(stack.items[0]) }, stack.items[0].fileName) : null;
|
|
134
134
|
const handleCopyAll = async () => {
|
|
135
135
|
const errorText = formatErrorForClipboard(err, stack, typeName, msg, err);
|
|
@@ -96,7 +96,7 @@ const DevFatalErrorPage = (props) => {
|
|
|
96
96
|
const typeName = String(
|
|
97
97
|
err["type"] || err.constructor?.name || typeof err
|
|
98
98
|
);
|
|
99
|
-
const msg = String(err
|
|
99
|
+
const msg = String(err?.message);
|
|
100
100
|
const FileRef = stack.items[0] ? /* @__PURE__ */ React.createElement("a", { href: toVSCodeURL(stack.items[0]) }, stack.items[0].fileName) : null;
|
|
101
101
|
const handleCopyAll = async () => {
|
|
102
102
|
const errorText = formatErrorForClipboard(err, stack, typeName, msg, err);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/web",
|
|
3
|
-
"version": "3.0.0-canary.
|
|
3
|
+
"version": "3.0.0-canary.13640+2b8b5599a",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -144,8 +144,8 @@
|
|
|
144
144
|
},
|
|
145
145
|
"dependencies": {
|
|
146
146
|
"@apollo/client": "3.13.9",
|
|
147
|
-
"@cedarjs/auth": "3.0.0-canary.
|
|
148
|
-
"@cedarjs/server-store": "3.0.0-canary.
|
|
147
|
+
"@cedarjs/auth": "3.0.0-canary.13640",
|
|
148
|
+
"@cedarjs/server-store": "3.0.0-canary.13640",
|
|
149
149
|
"@dr.pogodin/react-helmet": "2.0.4",
|
|
150
150
|
"@whatwg-node/fetch": "0.10.13",
|
|
151
151
|
"apollo-upload-client": "18.0.1",
|
|
@@ -164,8 +164,8 @@
|
|
|
164
164
|
"@babel/core": "^7.26.10",
|
|
165
165
|
"@babel/plugin-transform-runtime": "7.29.0",
|
|
166
166
|
"@babel/runtime": "7.29.2",
|
|
167
|
-
"@cedarjs/framework-tools": "3.0.0-canary.
|
|
168
|
-
"@cedarjs/internal": "3.0.0-canary.
|
|
167
|
+
"@cedarjs/framework-tools": "3.0.0-canary.13640",
|
|
168
|
+
"@cedarjs/internal": "3.0.0-canary.13640",
|
|
169
169
|
"@rollup/plugin-babel": "6.1.0",
|
|
170
170
|
"@testing-library/jest-dom": "6.9.1",
|
|
171
171
|
"@testing-library/react": "14.3.1",
|
|
@@ -189,5 +189,5 @@
|
|
|
189
189
|
"publishConfig": {
|
|
190
190
|
"access": "public"
|
|
191
191
|
},
|
|
192
|
-
"gitHead": "
|
|
192
|
+
"gitHead": "2b8b5599a9f147a4501d542e9dc6c5cc4bbdcbaa"
|
|
193
193
|
}
|