@cedarjs/vite 5.0.0-canary.2388 → 5.0.0-canary.2390
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/buildApp.d.ts.map +1 -1
- package/dist/buildApp.js +8 -0
- package/dist/cjs/buildApp.js +8 -0
- package/package.json +12 -12
package/dist/buildApp.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildApp.d.ts","sourceRoot":"","sources":["../src/buildApp.ts"],"names":[],"mappings":"AA4BA,MAAM,WAAW,oBAAoB;IACnC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAA;CACrB;AAED;;;;;;;;GAQG;AACH,wBAAsB,aAAa,CAAC,EAClC,OAAe,EACf,SAA0B,GAC3B,GAAE,oBAAyB,
|
|
1
|
+
{"version":3,"file":"buildApp.d.ts","sourceRoot":"","sources":["../src/buildApp.ts"],"names":[],"mappings":"AA4BA,MAAM,WAAW,oBAAoB;IACnC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAA;CACrB;AAED;;;;;;;;GAQG;AACH,wBAAsB,aAAa,CAAC,EAClC,OAAe,EACf,SAA0B,GAC3B,GAAE,oBAAyB,iBA4K3B"}
|
package/dist/buildApp.js
CHANGED
|
@@ -66,6 +66,14 @@ async function buildCedarApp({
|
|
|
66
66
|
return true;
|
|
67
67
|
}
|
|
68
68
|
return false;
|
|
69
|
+
},
|
|
70
|
+
// which Rollup can't interpret (only valid before call/new expressions).
|
|
71
|
+
// Tracked upstream: https://github.com/graphql-hive/graphql-scalars/issues/2869
|
|
72
|
+
onwarn(warning, warn) {
|
|
73
|
+
if (warning.code === "INVALID_ANNOTATION" && warning.id?.includes("graphql-scalars")) {
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
warn(warning);
|
|
69
77
|
}
|
|
70
78
|
}
|
|
71
79
|
}
|
package/dist/cjs/buildApp.js
CHANGED
|
@@ -96,6 +96,14 @@ async function buildCedarApp({
|
|
|
96
96
|
return true;
|
|
97
97
|
}
|
|
98
98
|
return false;
|
|
99
|
+
},
|
|
100
|
+
// which Rollup can't interpret (only valid before call/new expressions).
|
|
101
|
+
// Tracked upstream: https://github.com/graphql-hive/graphql-scalars/issues/2869
|
|
102
|
+
onwarn(warning, warn) {
|
|
103
|
+
if (warning.code === "INVALID_ANNOTATION" && warning.id?.includes("graphql-scalars")) {
|
|
104
|
+
return;
|
|
105
|
+
}
|
|
106
|
+
warn(warning);
|
|
99
107
|
}
|
|
100
108
|
}
|
|
101
109
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/vite",
|
|
3
|
-
"version": "5.0.0-canary.
|
|
3
|
+
"version": "5.0.0-canary.2390",
|
|
4
4
|
"description": "Vite configuration package for CedarJS",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -69,17 +69,17 @@
|
|
|
69
69
|
"@babel/generator": "7.29.1",
|
|
70
70
|
"@babel/parser": "7.29.3",
|
|
71
71
|
"@babel/traverse": "7.29.0",
|
|
72
|
-
"@cedarjs/api": "5.0.0-canary.
|
|
73
|
-
"@cedarjs/auth": "5.0.0-canary.
|
|
74
|
-
"@cedarjs/babel-config": "5.0.0-canary.
|
|
75
|
-
"@cedarjs/context": "5.0.0-canary.
|
|
76
|
-
"@cedarjs/cookie-jar": "5.0.0-canary.
|
|
77
|
-
"@cedarjs/graphql-server": "5.0.0-canary.
|
|
78
|
-
"@cedarjs/internal": "5.0.0-canary.
|
|
79
|
-
"@cedarjs/project-config": "5.0.0-canary.
|
|
80
|
-
"@cedarjs/server-store": "5.0.0-canary.
|
|
81
|
-
"@cedarjs/testing": "5.0.0-canary.
|
|
82
|
-
"@cedarjs/web": "5.0.0-canary.
|
|
72
|
+
"@cedarjs/api": "5.0.0-canary.2390",
|
|
73
|
+
"@cedarjs/auth": "5.0.0-canary.2390",
|
|
74
|
+
"@cedarjs/babel-config": "5.0.0-canary.2390",
|
|
75
|
+
"@cedarjs/context": "5.0.0-canary.2390",
|
|
76
|
+
"@cedarjs/cookie-jar": "5.0.0-canary.2390",
|
|
77
|
+
"@cedarjs/graphql-server": "5.0.0-canary.2390",
|
|
78
|
+
"@cedarjs/internal": "5.0.0-canary.2390",
|
|
79
|
+
"@cedarjs/project-config": "5.0.0-canary.2390",
|
|
80
|
+
"@cedarjs/server-store": "5.0.0-canary.2390",
|
|
81
|
+
"@cedarjs/testing": "5.0.0-canary.2390",
|
|
82
|
+
"@cedarjs/web": "5.0.0-canary.2390",
|
|
83
83
|
"@fastify/url-data": "6.0.3",
|
|
84
84
|
"@swc/core": "1.15.33",
|
|
85
85
|
"@universal-deploy/store": "^0.2.1",
|