@rspack/core 1.0.14 → 1.1.0-beta.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.
- package/compiled/@swc/types/index.d.ts +1962 -0
- package/compiled/@swc/types/index.js +19 -0
- package/compiled/@swc/types/license +201 -0
- package/compiled/@swc/types/package.json +1 -0
- package/dist/Compilation.d.ts +6 -17
- package/dist/FileSystem.d.ts +7 -2
- package/dist/Module.d.ts +5 -3
- package/dist/builtin-loader/swc/types.d.ts +9 -435
- package/dist/builtin-plugin/HtmlRspackPlugin.d.ts +1 -1
- package/dist/builtin-plugin/RemoveDuplicateModulesPlugin.d.ts +10 -0
- package/dist/builtin-plugin/SizeLimitsPlugin.d.ts +8 -8
- package/dist/builtin-plugin/SplitChunksPlugin.d.ts +1 -1
- package/dist/builtin-plugin/index.d.ts +4 -2
- package/dist/config/adapter.d.ts +1 -1
- package/dist/config/adapterRuleUse.d.ts +1 -1
- package/dist/config/index.d.ts +1 -0
- package/dist/config/normalization.d.ts +2 -1
- package/dist/config/types.d.ts +389 -3
- package/dist/config/zod.d.ts +894 -1303
- package/dist/exports.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +410 -4840
- package/dist/util/ArrayQueue.d.ts +1 -9
- package/dist/util/asyncLib.d.ts +54 -0
- package/package.json +5 -5
- package/dist/builtin-loader/swc/react.d.ts +0 -15
- /package/dist/builtin-plugin/{LightningCssMiminizerRspackPlugin.d.ts → LightningCssMinimizerRspackPlugin.d.ts} +0 -0
package/dist/exports.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ export declare const webworker: Webworker;
|
|
|
104
104
|
import { LimitChunkCountPlugin } from "./builtin-plugin";
|
|
105
105
|
import { RuntimeChunkPlugin } from "./builtin-plugin";
|
|
106
106
|
import { SplitChunksPlugin } from "./builtin-plugin";
|
|
107
|
+
import { RemoveDuplicateModulesPlugin } from "./builtin-plugin";
|
|
107
108
|
interface Optimize {
|
|
108
109
|
LimitChunkCountPlugin: typeof LimitChunkCountPlugin;
|
|
109
110
|
RuntimeChunkPlugin: typeof RuntimeChunkPlugin;
|
|
@@ -159,5 +160,6 @@ interface Experiments {
|
|
|
159
160
|
register: typeof registerGlobalTrace;
|
|
160
161
|
cleanup: typeof cleanupGlobalTrace;
|
|
161
162
|
};
|
|
163
|
+
RemoveDuplicateModulesPlugin: typeof RemoveDuplicateModulesPlugin;
|
|
162
164
|
}
|
|
163
165
|
export declare const experiments: Experiments;
|