@vitejs/plugin-rsc 0.4.20 → 0.4.22
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/README.md +64 -60
- package/dist/{browser-mbRygLxB.d.ts → browser-DUDACP5e.d.ts} +1 -1
- package/dist/browser.d.ts +3 -3
- package/dist/core/browser.d.ts +1 -1
- package/dist/core/rsc.d.ts +2 -2
- package/dist/core/rsc.js +1 -1
- package/dist/core/ssr.d.ts +2 -2
- package/dist/core/ssr.js +1 -1
- package/dist/{encryption-runtime-CJUalqt3.js → encryption-runtime-z7X8aRLB.js} +1 -1
- package/dist/extra/browser.d.ts +1 -1
- package/dist/extra/browser.js +1 -1
- package/dist/extra/rsc.d.ts +1 -1
- package/dist/extra/rsc.js +4 -4
- package/dist/extra/ssr.js +5 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/{plugin-DYOxE_xg.js → plugin-BLljgx4e.js} +408 -300
- package/dist/{plugin-BQszG7oj.d.ts → plugin-CrIhPWor.d.ts} +28 -12
- package/dist/plugin.d.ts +2 -2
- package/dist/plugin.js +3 -2
- package/dist/react/browser.d.ts +3 -3
- package/dist/react/rsc.d.ts +3 -3
- package/dist/react/rsc.js +2 -2
- package/dist/react/ssr.d.ts +3 -3
- package/dist/react/ssr.js +2 -2
- package/dist/{rsc-BwEwbLG4.js → rsc-0ugrKC93.js} +1 -1
- package/dist/{rsc-CxDPDiLz.d.ts → rsc-BeJKxeMX.d.ts} +1 -1
- package/dist/{rsc-VjVw_i-M.js → rsc-K03z8Dh0.js} +1 -1
- package/dist/rsc-html-stream/browser.js +1 -1
- package/dist/rsc-html-stream/ssr.js +1 -1
- package/dist/rsc.d.ts +4 -4
- package/dist/rsc.js +4 -4
- package/dist/shared-Cwk6fxfN.js +22 -0
- package/dist/{ssr-BMTRhW5g.js → ssr-BnEu3hbo.js} +6 -2
- package/dist/{ssr-BoNKka-5.d.ts → ssr-Bv84RACl.d.ts} +1 -1
- package/dist/{ssr-BEKKb_cw.js → ssr-D154nyka.js} +1 -1
- package/dist/ssr.d.ts +3 -3
- package/dist/ssr.js +4 -3
- package/dist/utils/encryption-runtime.d.ts +1 -1
- package/dist/utils/encryption-runtime.js +3 -3
- package/package.json +4 -5
- /package/dist/{browser-CuwQIlVY.d.ts → browser-CyGTajab.d.ts} +0 -0
- /package/dist/{client-C1J4FCf5.js → client-BPIq1kGs.js} +0 -0
- /package/dist/{encryption-runtime-SgJRa9yj.d.ts → encryption-runtime-BmDC7d-3.d.ts} +0 -0
- /package/dist/{index-QWzVHuya.d.ts → index-CrcbP1rd.d.ts} +0 -0
- /package/dist/{rsc-CFtzqEG8.d.ts → rsc-A9Zr9bEE.d.ts} +0 -0
- /package/dist/{rsc-BfBPoIV8.js → rsc-C54XEgZY.js} +0 -0
- /package/dist/{rsc-Cv3XEZqB.d.ts → rsc-D-lnfNSa.d.ts} +0 -0
- /package/dist/{server-D0-DavPP.js → server-DoWzqBNF.js} +0 -0
- /package/dist/{ssr-D6GTzOzx.d.ts → ssr-EOoYUXrM.d.ts} +0 -0
- /package/dist/{ssr--rFiBtws.js → ssr-v4qYqcXu.js} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import MagicString from "magic-string";
|
|
2
|
-
import { Plugin, ViteDevServer, parseAstAsync } from "vite";
|
|
2
|
+
import { Plugin, ResolvedConfig, Rollup, ViteDevServer, parseAstAsync } from "vite";
|
|
3
3
|
import { Program } from "estree";
|
|
4
4
|
|
|
5
5
|
//#region src/transforms/wrap-export.d.ts
|
|
@@ -11,6 +11,31 @@ type ExportMeta = {
|
|
|
11
11
|
type TransformWrapExportFilter = (name: string, meta: ExportMeta) => boolean;
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region src/plugin.d.ts
|
|
14
|
+
type ClientReferenceMeta = {
|
|
15
|
+
importId: string;
|
|
16
|
+
referenceKey: string;
|
|
17
|
+
packageSource?: string;
|
|
18
|
+
exportNames: string[];
|
|
19
|
+
renderedExports: string[];
|
|
20
|
+
};
|
|
21
|
+
type ServerRerferenceMeta = {
|
|
22
|
+
importId: string;
|
|
23
|
+
referenceKey: string;
|
|
24
|
+
exportNames: string[];
|
|
25
|
+
};
|
|
26
|
+
declare class RscPluginManager {
|
|
27
|
+
server: ViteDevServer;
|
|
28
|
+
config: ResolvedConfig;
|
|
29
|
+
rscBundle: Rollup.OutputBundle;
|
|
30
|
+
buildAssetsManifest: AssetsManifest | undefined;
|
|
31
|
+
isScanBuild: boolean;
|
|
32
|
+
clientReferenceMetaMap: Record<string, ClientReferenceMeta>;
|
|
33
|
+
serverReferenceMetaMap: Record<string, ServerRerferenceMeta>;
|
|
34
|
+
serverResourcesMetaMap: Record<string, {
|
|
35
|
+
key: string;
|
|
36
|
+
}>;
|
|
37
|
+
stabilize(): void;
|
|
38
|
+
}
|
|
14
39
|
type RscPluginOptions = {
|
|
15
40
|
/**
|
|
16
41
|
* shorthand for configuring `environments.(name).build.rollupOptions.input.index`
|
|
@@ -74,7 +99,7 @@ type RscPluginOptions = {
|
|
|
74
99
|
};
|
|
75
100
|
};
|
|
76
101
|
/** @experimental */
|
|
77
|
-
declare function vitePluginRscMinimal(rscPluginOptions?: RscPluginOptions): Plugin[];
|
|
102
|
+
declare function vitePluginRscMinimal(rscPluginOptions?: RscPluginOptions, manager?: RscPluginManager): Plugin[];
|
|
78
103
|
declare function vitePluginRsc(rscPluginOptions?: RscPluginOptions): Plugin[];
|
|
79
104
|
declare class RuntimeAsset {
|
|
80
105
|
runtime: string;
|
|
@@ -98,9 +123,6 @@ type ResolvedAssetDeps = {
|
|
|
98
123
|
js: string[];
|
|
99
124
|
css: string[];
|
|
100
125
|
};
|
|
101
|
-
declare function vitePluginFindSourceMapURL(): Plugin[];
|
|
102
|
-
declare function findSourceMapURL(server: ViteDevServer, filename: string, environmentName: string): Promise<object | undefined>;
|
|
103
|
-
declare function vitePluginRscCss(rscCssOptions?: Pick<RscPluginOptions, "rscCssTransform">): Plugin[];
|
|
104
126
|
declare function transformRscCssExport(options: {
|
|
105
127
|
ast: Awaited<ReturnType<typeof parseAstAsync>>;
|
|
106
128
|
code: string;
|
|
@@ -109,11 +131,5 @@ declare function transformRscCssExport(options: {
|
|
|
109
131
|
}): Promise<{
|
|
110
132
|
output: MagicString;
|
|
111
133
|
} | undefined>;
|
|
112
|
-
/**
|
|
113
|
-
* temporary workaround for
|
|
114
|
-
* - https://github.com/cloudflare/workers-sdk/issues/9538 (fixed in @cloudflare/vite-plugin@1.8.0)
|
|
115
|
-
* - https://github.com/vitejs/vite/pull/20077 (fixed in vite@7.0.0)
|
|
116
|
-
*/
|
|
117
|
-
declare function __fix_cloudflare(): Plugin;
|
|
118
134
|
//#endregion
|
|
119
|
-
export { AssetDeps, AssetsManifest, ResolvedAssetDeps, ResolvedAssetsManifest, RscPluginOptions,
|
|
135
|
+
export { AssetDeps, AssetsManifest, ResolvedAssetDeps, ResolvedAssetsManifest, RscPluginOptions, transformRscCssExport, vitePluginRsc, vitePluginRscMinimal };
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { AssetDeps, AssetsManifest, ResolvedAssetDeps, ResolvedAssetsManifest, RscPluginOptions,
|
|
2
|
-
export { AssetDeps, AssetsManifest, ResolvedAssetDeps, ResolvedAssetsManifest, RscPluginOptions,
|
|
1
|
+
import { AssetDeps, AssetsManifest, ResolvedAssetDeps, ResolvedAssetsManifest, RscPluginOptions, transformRscCssExport, vitePluginRsc, vitePluginRscMinimal } from "./plugin-CrIhPWor.js";
|
|
2
|
+
export { AssetDeps, AssetsManifest, ResolvedAssetDeps, ResolvedAssetsManifest, RscPluginOptions, vitePluginRsc as default, transformRscCssExport, vitePluginRscMinimal };
|
package/dist/plugin.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import "./dist-DiJnRA1C.js";
|
|
2
2
|
import "./plugin-CZbI4rhS.js";
|
|
3
|
-
import {
|
|
3
|
+
import { transformRscCssExport, vitePluginRsc, vitePluginRscMinimal } from "./plugin-BLljgx4e.js";
|
|
4
4
|
import "./encryption-utils-BDwwcMVT.js";
|
|
5
5
|
import "./rpc-tGuLT8PD.js";
|
|
6
6
|
import "./vite-utils-Vzd7cqfv.js";
|
|
7
|
+
import "./shared-Cwk6fxfN.js";
|
|
7
8
|
|
|
8
|
-
export {
|
|
9
|
+
export { vitePluginRsc as default, transformRscCssExport, vitePluginRscMinimal };
|
package/dist/react/browser.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CallServerCallback } from "../index-
|
|
2
|
-
import { setRequireModule } from "../browser-
|
|
3
|
-
import { callServer, createFromFetch, createFromReadableStream, createServerReference, createTemporaryReferenceSet, encodeReply, findSourceMapURL, setServerCallback } from "../browser-
|
|
1
|
+
import { CallServerCallback } from "../index-CrcbP1rd.js";
|
|
2
|
+
import { setRequireModule } from "../browser-CyGTajab.js";
|
|
3
|
+
import { callServer, createFromFetch, createFromReadableStream, createServerReference, createTemporaryReferenceSet, encodeReply, findSourceMapURL, setServerCallback } from "../browser-DUDACP5e.js";
|
|
4
4
|
export { CallServerCallback, callServer, createFromFetch, createFromReadableStream, createServerReference, createTemporaryReferenceSet, encodeReply, findSourceMapURL, setRequireModule, setServerCallback };
|
package/dist/react/rsc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../index-
|
|
2
|
-
import { loadServerAction, setRequireModule } from "../rsc-
|
|
3
|
-
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "../rsc-
|
|
1
|
+
import "../index-CrcbP1rd.js";
|
|
2
|
+
import { loadServerAction, setRequireModule } from "../rsc-BeJKxeMX.js";
|
|
3
|
+
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "../rsc-A9Zr9bEE.js";
|
|
4
4
|
export { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, loadServerAction, registerClientReference, registerServerReference, renderToReadableStream, setRequireModule };
|
package/dist/react/rsc.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../dist-DiJnRA1C.js";
|
|
2
2
|
import "../shared-CEyKoKAb.js";
|
|
3
|
-
import { loadServerAction, setRequireModule } from "../rsc-
|
|
4
|
-
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "../rsc-
|
|
3
|
+
import { loadServerAction, setRequireModule } from "../rsc-C54XEgZY.js";
|
|
4
|
+
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "../rsc-K03z8Dh0.js";
|
|
5
5
|
|
|
6
6
|
export { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, loadServerAction, registerClientReference, registerServerReference, renderToReadableStream, setRequireModule };
|
package/dist/react/ssr.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../index-
|
|
2
|
-
import { setRequireModule } from "../ssr-
|
|
3
|
-
import { callServer, createFromReadableStream, createServerReference, findSourceMapURL } from "../ssr-
|
|
1
|
+
import "../index-CrcbP1rd.js";
|
|
2
|
+
import { setRequireModule } from "../ssr-Bv84RACl.js";
|
|
3
|
+
import { callServer, createFromReadableStream, createServerReference, findSourceMapURL } from "../ssr-EOoYUXrM.js";
|
|
4
4
|
export { callServer, createFromReadableStream, createServerReference, findSourceMapURL, setRequireModule };
|
package/dist/react/ssr.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../dist-DiJnRA1C.js";
|
|
2
2
|
import "../shared-CEyKoKAb.js";
|
|
3
|
-
import { setRequireModule } from "../ssr
|
|
4
|
-
import { callServer, createFromReadableStream, createServerReference, findSourceMapURL } from "../ssr-
|
|
3
|
+
import { setRequireModule } from "../ssr-v4qYqcXu.js";
|
|
4
|
+
import { callServer, createFromReadableStream, createServerReference, findSourceMapURL } from "../ssr-D154nyka.js";
|
|
5
5
|
|
|
6
6
|
export { callServer, createFromReadableStream, createServerReference, findSourceMapURL, setRequireModule };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createClientManifest, createServerDecodeClientManifest, createServerManifest } from "./rsc-
|
|
1
|
+
import { createClientManifest, createServerDecodeClientManifest, createServerManifest } from "./rsc-C54XEgZY.js";
|
|
2
2
|
import * as ReactServer from "@vitejs/plugin-rsc/vendor/react-server-dom/server.edge";
|
|
3
3
|
import * as ReactClient from "@vitejs/plugin-rsc/vendor/react-server-dom/client.edge";
|
|
4
4
|
|
package/dist/rsc.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "./index-
|
|
2
|
-
import { createClientManifest, createServerManifest, loadServerAction, setRequireModule } from "./rsc-
|
|
3
|
-
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "./rsc-
|
|
4
|
-
import { decryptActionBoundArgs, encryptActionBoundArgs } from "./encryption-runtime-
|
|
1
|
+
import "./index-CrcbP1rd.js";
|
|
2
|
+
import { createClientManifest, createServerManifest, loadServerAction, setRequireModule } from "./rsc-BeJKxeMX.js";
|
|
3
|
+
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "./rsc-A9Zr9bEE.js";
|
|
4
|
+
import { decryptActionBoundArgs, encryptActionBoundArgs } from "./encryption-runtime-BmDC7d-3.js";
|
|
5
5
|
export { createClientManifest, createClientTemporaryReferenceSet, createFromReadableStream, createServerManifest, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, decryptActionBoundArgs, encodeReply, encryptActionBoundArgs, loadServerAction, registerClientReference, registerServerReference, renderToReadableStream, setRequireModule };
|
package/dist/rsc.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./dist-DiJnRA1C.js";
|
|
2
2
|
import "./shared-CEyKoKAb.js";
|
|
3
3
|
import "./encryption-utils-BDwwcMVT.js";
|
|
4
|
-
import { createClientManifest, createServerManifest, loadServerAction, setRequireModule } from "./rsc-
|
|
5
|
-
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "./rsc-
|
|
6
|
-
import { decryptActionBoundArgs, encryptActionBoundArgs } from "./encryption-runtime-
|
|
7
|
-
import "./rsc-
|
|
4
|
+
import { createClientManifest, createServerManifest, loadServerAction, setRequireModule } from "./rsc-C54XEgZY.js";
|
|
5
|
+
import { createClientTemporaryReferenceSet, createFromReadableStream, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, encodeReply, registerClientReference, registerServerReference, renderToReadableStream } from "./rsc-K03z8Dh0.js";
|
|
6
|
+
import { decryptActionBoundArgs, encryptActionBoundArgs } from "./encryption-runtime-z7X8aRLB.js";
|
|
7
|
+
import "./rsc-0ugrKC93.js";
|
|
8
8
|
|
|
9
9
|
export { createClientManifest, createClientTemporaryReferenceSet, createFromReadableStream, createServerManifest, createTemporaryReferenceSet, decodeAction, decodeFormState, decodeReply, decryptActionBoundArgs, encodeReply, encryptActionBoundArgs, loadServerAction, registerClientReference, registerServerReference, renderToReadableStream, setRequireModule };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
//#region src/plugins/shared.ts
|
|
2
|
+
function toCssVirtual({ id, type }) {
|
|
3
|
+
return `virtual:vite-rsc/css?type=${type}&id=${encodeURIComponent(id)}&lang.js`;
|
|
4
|
+
}
|
|
5
|
+
function parseCssVirtual(id) {
|
|
6
|
+
if (id.startsWith("\0virtual:vite-rsc/css?")) return parseIdQuery(id).query;
|
|
7
|
+
}
|
|
8
|
+
function parseIdQuery(id) {
|
|
9
|
+
if (!id.includes("?")) return {
|
|
10
|
+
filename: id,
|
|
11
|
+
query: {}
|
|
12
|
+
};
|
|
13
|
+
const [filename, rawQuery] = id.split(`?`, 2);
|
|
14
|
+
const query = Object.fromEntries(new URLSearchParams(rawQuery));
|
|
15
|
+
return {
|
|
16
|
+
filename,
|
|
17
|
+
query
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
//#endregion
|
|
22
|
+
export { parseCssVirtual, parseIdQuery, toCssVirtual };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { toCssVirtual } from "./shared-Cwk6fxfN.js";
|
|
2
|
+
import { setRequireModule } from "./ssr-v4qYqcXu.js";
|
|
2
3
|
import * as clientReferences from "virtual:vite-rsc/client-references";
|
|
3
4
|
import assetsManifest from "virtual:vite-rsc/assets-manifest";
|
|
4
5
|
import * as ReactDOM from "react-dom";
|
|
@@ -14,7 +15,10 @@ function initialize() {
|
|
|
14
15
|
);
|
|
15
16
|
const modCss = await import(
|
|
16
17
|
/* @vite-ignore */
|
|
17
|
-
"/@id/
|
|
18
|
+
"/@id/__x00__" + toCssVirtual({
|
|
19
|
+
id,
|
|
20
|
+
type: "ssr"
|
|
21
|
+
})
|
|
18
22
|
);
|
|
19
23
|
return wrapResourceProxy(mod, {
|
|
20
24
|
js: [],
|
package/dist/ssr.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "./index-
|
|
2
|
-
import { createServerConsumerManifest, setRequireModule } from "./ssr-
|
|
3
|
-
import { callServer, createFromReadableStream, createServerReference, findSourceMapURL } from "./ssr-
|
|
1
|
+
import "./index-CrcbP1rd.js";
|
|
2
|
+
import { createServerConsumerManifest, setRequireModule } from "./ssr-Bv84RACl.js";
|
|
3
|
+
import { callServer, createFromReadableStream, createServerReference, findSourceMapURL } from "./ssr-EOoYUXrM.js";
|
|
4
4
|
export { callServer, createFromReadableStream, createServerConsumerManifest, createServerReference, findSourceMapURL, setRequireModule };
|
package/dist/ssr.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import "./dist-DiJnRA1C.js";
|
|
2
2
|
import "./shared-CEyKoKAb.js";
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
import "./ssr-
|
|
3
|
+
import "./shared-Cwk6fxfN.js";
|
|
4
|
+
import { createServerConsumerManifest, setRequireModule } from "./ssr-v4qYqcXu.js";
|
|
5
|
+
import { callServer, createFromReadableStream, createServerReference, findSourceMapURL } from "./ssr-D154nyka.js";
|
|
6
|
+
import "./ssr-BnEu3hbo.js";
|
|
6
7
|
|
|
7
8
|
export { callServer, createFromReadableStream, createServerConsumerManifest, createServerReference, findSourceMapURL, setRequireModule };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { decryptActionBoundArgs, encryptActionBoundArgs } from "../encryption-runtime-
|
|
1
|
+
import { decryptActionBoundArgs, encryptActionBoundArgs } from "../encryption-runtime-BmDC7d-3.js";
|
|
2
2
|
export { decryptActionBoundArgs, encryptActionBoundArgs };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "../dist-DiJnRA1C.js";
|
|
2
2
|
import "../shared-CEyKoKAb.js";
|
|
3
3
|
import "../encryption-utils-BDwwcMVT.js";
|
|
4
|
-
import "../rsc-
|
|
5
|
-
import "../rsc-
|
|
6
|
-
import { decryptActionBoundArgs, encryptActionBoundArgs } from "../encryption-runtime-
|
|
4
|
+
import "../rsc-C54XEgZY.js";
|
|
5
|
+
import "../rsc-K03z8Dh0.js";
|
|
6
|
+
import { decryptActionBoundArgs, encryptActionBoundArgs } from "../encryption-runtime-z7X8aRLB.js";
|
|
7
7
|
|
|
8
8
|
export { decryptActionBoundArgs, encryptActionBoundArgs };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitejs/plugin-rsc",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.22",
|
|
4
4
|
"description": "React Server Components (RSC) support for Vite.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vite",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"@playwright/test": "^1.54.2",
|
|
52
52
|
"@tsconfig/strictest": "^2.0.5",
|
|
53
53
|
"@types/estree": "^1.0.8",
|
|
54
|
-
"@types/node": "^22.17.
|
|
55
|
-
"@types/react": "^19.1.
|
|
54
|
+
"@types/node": "^22.17.2",
|
|
55
|
+
"@types/react": "^19.1.10",
|
|
56
56
|
"@types/react-dom": "^19.1.7",
|
|
57
57
|
"@vitejs/plugin-react": "workspace:*",
|
|
58
58
|
"react": "^19.1.1",
|
|
@@ -60,8 +60,7 @@
|
|
|
60
60
|
"react-server-dom-webpack": "^19.1.1",
|
|
61
61
|
"rsc-html-stream": "^0.0.7",
|
|
62
62
|
"tinyexec": "^1.0.1",
|
|
63
|
-
"tsdown": "^0.14.
|
|
64
|
-
"vite-plugin-inspect": "^11.3.2"
|
|
63
|
+
"tsdown": "^0.14.1"
|
|
65
64
|
},
|
|
66
65
|
"peerDependencies": {
|
|
67
66
|
"react": "*",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|