@rollup/browser 4.51.0 → 4.52.0

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.
@@ -818,6 +818,8 @@ export interface OutputOptions {
818
818
  minifyInternalExports?: boolean | undefined;
819
819
  name?: string | undefined;
820
820
  noConflict?: boolean | undefined;
821
+ /** @deprecated This will be the new default in Rollup 5. */
822
+ onlyExplicitManualChunks?: boolean | undefined;
821
823
  outro?: string | AddonFunction | undefined;
822
824
  paths?: OptionsPaths | undefined;
823
825
  plugins?: OutputPluginOption | undefined;
@@ -873,6 +875,7 @@ export interface NormalizedOutputOptions {
873
875
  minifyInternalExports: boolean;
874
876
  name: string | undefined;
875
877
  noConflict: boolean;
878
+ onlyExplicitManualChunks: boolean;
876
879
  outro: AddonFunction;
877
880
  paths: OptionsPaths;
878
881
  plugins: OutputPlugin[];