@rspack/core 1.3.9 → 1.3.11
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/dist/ChunkGraph.d.ts +1 -0
- package/dist/CodeGenerationResults.d.ts +1 -0
- package/dist/Compilation.d.ts +10 -6
- package/dist/Diagnostics.d.ts +7 -0
- package/dist/Module.d.ts +9 -7
- package/dist/RspackError.d.ts +3 -0
- package/dist/builtin-plugin/CssChunkingPlugin.d.ts +19 -0
- package/dist/builtin-plugin/DefinePlugin.d.ts +1 -1
- package/dist/builtin-plugin/EvalSourceMapDevToolPlugin.d.ts +3 -3
- package/dist/builtin-plugin/SourceMapDevToolPlugin.d.ts +4 -4
- package/dist/builtin-plugin/SubresourceIntegrityPlugin.d.ts +1 -1
- package/dist/builtin-plugin/index.d.ts +1 -0
- package/dist/config/adapter.d.ts +2 -2
- package/dist/config/types.d.ts +24 -0
- package/dist/config/zod.d.ts +63 -18
- package/dist/exports.d.ts +2 -0
- package/dist/index.js +481 -251
- package/dist/taps/compilation.d.ts +6 -0
- package/dist/trace/index.d.ts +6 -6
- package/dist/trace/traceHookPlugin.d.ts +5 -0
- package/dist/worker.js +1 -1
- package/package.json +4 -4
package/dist/exports.d.ts
CHANGED
@@ -116,6 +116,7 @@ import { RuntimeChunkPlugin } from "./builtin-plugin";
|
|
116
116
|
import { SplitChunksPlugin } from "./builtin-plugin";
|
117
117
|
import { RemoveDuplicateModulesPlugin } from "./builtin-plugin";
|
118
118
|
import { RsdoctorPlugin } from "./builtin-plugin";
|
119
|
+
import { CssChunkingPlugin } from "./builtin-plugin";
|
119
120
|
interface Optimize {
|
120
121
|
LimitChunkCountPlugin: typeof LimitChunkCountPlugin;
|
121
122
|
RuntimeChunkPlugin: typeof RuntimeChunkPlugin;
|
@@ -183,5 +184,6 @@ interface Experiments {
|
|
183
184
|
transform: typeof transform;
|
184
185
|
minify: typeof minify;
|
185
186
|
};
|
187
|
+
CssChunkingPlugin: typeof CssChunkingPlugin;
|
186
188
|
}
|
187
189
|
export declare const experiments: Experiments;
|