Skip to content

Commit f97401d

Browse files
author
wuls
committed
fix name
1 parent a53fa4b commit f97401d

File tree

1 file changed

+3
-3
lines changed
  • packages/qwik/src/optimizer/src/plugins

1 file changed

+3
-3
lines changed

Diff for: packages/qwik/src/optimizer/src/plugins/plugin.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ export function createQwikPlugin(optimizerOptions: OptimizerOptions = {}) {
789789
return manifest;
790790
};
791791

792-
const collectServerRpcAndCtxKindSymbols = async () => {
792+
const collectPublicAPI = async () => {
793793
const manifest = assembleManifestData(injections, rollupBundle);
794794

795795
return Object.fromEntries(
@@ -800,7 +800,7 @@ export function createQwikPlugin(optimizerOptions: OptimizerOptions = {}) {
800800
);
801801
};
802802

803-
return { addInjection, generateManifest, collectServerRpcAndCtxKindSymbols };
803+
return { addInjection, generateManifest, collectPublicAPI };
804804
};
805805

806806
const assembleManifestData = (injections: GlobalInjections[], rollupBundle: OutputBundle) => {
@@ -1002,7 +1002,7 @@ export const SSR_OUT_DIR = 'server';
10021002
const LIB_OUT_DIR = 'lib';
10031003

10041004
export const Q_MANIFEST_FILENAME = 'q-manifest.json';
1005-
export const Q_SERVER_RPC_CTX_KIND_SYMBOLS_FILENAME = 'q-server-rpc-ctx-kind-symbols.json';
1005+
export const Q_SERVER_RPC_CTX_KIND_SYMBOLS_FILENAME = 'q-public-api.json';
10061006

10071007
export interface QwikPluginDevTools {
10081008
imageDevTools?: boolean | true;

0 commit comments

Comments
 (0)