eddev 2.0.0-beta.82 → 2.0.0-beta.83
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "2.0.0-beta.
|
|
1
|
+
export declare const VERSION = "2.0.0-beta.83";
|
package/dist/node/cli/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "2.0.0-beta.
|
|
1
|
+
export const VERSION = "2.0.0-beta.83";
|
|
@@ -561,7 +561,7 @@ export function createVinxiCodegen(opts) {
|
|
|
561
561
|
// Update URLs with dots, which tRPC prefers
|
|
562
562
|
const originalReq = getWebRequest(event)
|
|
563
563
|
const parsed = parseURL(originalReq.url)
|
|
564
|
-
parsed.pathname = "/" + parsed.pathname.replace(/(^\\/|\\/$)/g, "").replace(
|
|
564
|
+
parsed.pathname = "/" + parsed.pathname.replace(/(^\\/|\\/$)/g, "").replace(/\\//g, ".")
|
|
565
565
|
const req = new Request(stringifyParsedURL(parsed), originalReq)
|
|
566
566
|
|
|
567
567
|
// Handle any early results which are Responses
|