File tree 1 file changed +3
-3
lines changed
packages/qwik/src/optimizer/src/plugins
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -789,7 +789,7 @@ export function createQwikPlugin(optimizerOptions: OptimizerOptions = {}) {
789
789
return manifest ;
790
790
} ;
791
791
792
- const collectServerRpcAndCtxKindSymbols = async ( ) => {
792
+ const collectPublicAPI = async ( ) => {
793
793
const manifest = assembleManifestData ( injections , rollupBundle ) ;
794
794
795
795
return Object . fromEntries (
@@ -800,7 +800,7 @@ export function createQwikPlugin(optimizerOptions: OptimizerOptions = {}) {
800
800
) ;
801
801
} ;
802
802
803
- return { addInjection, generateManifest, collectServerRpcAndCtxKindSymbols } ;
803
+ return { addInjection, generateManifest, collectPublicAPI } ;
804
804
} ;
805
805
806
806
const assembleManifestData = ( injections : GlobalInjections [ ] , rollupBundle : OutputBundle ) => {
@@ -1002,7 +1002,7 @@ export const SSR_OUT_DIR = 'server';
1002
1002
const LIB_OUT_DIR = 'lib' ;
1003
1003
1004
1004
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' ;
1006
1006
1007
1007
export interface QwikPluginDevTools {
1008
1008
imageDevTools ?: boolean | true ;
You can’t perform that action at this time.
0 commit comments