@xyd-js/content 0.0.0-build-8b31648-20250923204702 → 0.0.0-build-9f87f13-20250930210637
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/CHANGELOG.md +7 -7
- package/dist/md.js.map +1 -1
- package/dist/vite.d.ts +3 -0
- package/dist/vite.js.map +1 -1
- package/package.json +7 -7
package/dist/vite.d.ts
CHANGED
|
@@ -793,6 +793,8 @@ interface OutputOptions {
|
|
|
793
793
|
minifyInternalExports?: boolean | undefined;
|
|
794
794
|
name?: string | undefined;
|
|
795
795
|
noConflict?: boolean | undefined;
|
|
796
|
+
/** @deprecated This will be the new default in Rollup 5. */
|
|
797
|
+
onlyExplicitManualChunks?: boolean | undefined;
|
|
796
798
|
outro?: string | AddonFunction | undefined;
|
|
797
799
|
paths?: OptionsPaths | undefined;
|
|
798
800
|
plugins?: OutputPluginOption | undefined;
|
|
@@ -848,6 +850,7 @@ interface NormalizedOutputOptions {
|
|
|
848
850
|
minifyInternalExports: boolean;
|
|
849
851
|
name: string | undefined;
|
|
850
852
|
noConflict: boolean;
|
|
853
|
+
onlyExplicitManualChunks: boolean;
|
|
851
854
|
outro: AddonFunction;
|
|
852
855
|
paths: OptionsPaths;
|
|
853
856
|
plugins: OutputPlugin[];
|