@rspack-canary/browser 1.7.3-canary-467a44da-20260119082229 → 1.7.3-canary-6991b7b5-20260119174555
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/container/ModuleFederationManifestPlugin.d.ts +3 -10
- package/dist/container/ModuleFederationPlugin.d.ts +1 -17
- package/dist/exports.d.ts +0 -3
- package/dist/index.mjs +353 -909
- package/dist/napi-binding.d.ts +0 -33
- package/dist/rspack.wasm32-wasi.wasm +0 -0
- package/dist/sharing/ConsumeSharedPlugin.d.ts +0 -13
- package/dist/sharing/ProvideSharedPlugin.d.ts +0 -19
- package/dist/sharing/SharePlugin.d.ts +0 -36
- package/dist/sharing/utils.d.ts +0 -1
- package/package.json +1 -1
- package/dist/sharing/CollectSharedEntryPlugin.d.ts +0 -22
- package/dist/sharing/IndependentSharedPlugin.d.ts +0 -35
- package/dist/sharing/SharedContainerPlugin.d.ts +0 -23
- package/dist/sharing/SharedUsedExportsOptimizerPlugin.d.ts +0 -14
- package/dist/sharing/TreeShakingSharedPlugin.d.ts +0 -16
package/dist/napi-binding.d.ts
CHANGED
|
@@ -540,13 +540,10 @@ export declare enum BuiltinPluginName {
|
|
|
540
540
|
SplitChunksPlugin = 'SplitChunksPlugin',
|
|
541
541
|
RemoveDuplicateModulesPlugin = 'RemoveDuplicateModulesPlugin',
|
|
542
542
|
ShareRuntimePlugin = 'ShareRuntimePlugin',
|
|
543
|
-
SharedUsedExportsOptimizerPlugin = 'SharedUsedExportsOptimizerPlugin',
|
|
544
543
|
ContainerPlugin = 'ContainerPlugin',
|
|
545
544
|
ContainerReferencePlugin = 'ContainerReferencePlugin',
|
|
546
545
|
ProvideSharedPlugin = 'ProvideSharedPlugin',
|
|
547
546
|
ConsumeSharedPlugin = 'ConsumeSharedPlugin',
|
|
548
|
-
CollectSharedEntryPlugin = 'CollectSharedEntryPlugin',
|
|
549
|
-
SharedContainerPlugin = 'SharedContainerPlugin',
|
|
550
547
|
ModuleFederationRuntimePlugin = 'ModuleFederationRuntimePlugin',
|
|
551
548
|
ModuleFederationManifestPlugin = 'ModuleFederationManifestPlugin',
|
|
552
549
|
NamedModuleIdsPlugin = 'NamedModuleIdsPlugin',
|
|
@@ -1842,11 +1839,6 @@ export interface RawCircularDependencyRspackPluginOptions {
|
|
|
1842
1839
|
onEnd?: () => void
|
|
1843
1840
|
}
|
|
1844
1841
|
|
|
1845
|
-
export interface RawCollectShareEntryPluginOptions {
|
|
1846
|
-
consumes: Array<RawConsumeOptions>
|
|
1847
|
-
filename?: string
|
|
1848
|
-
}
|
|
1849
|
-
|
|
1850
1842
|
export interface RawCompilerPlatform {
|
|
1851
1843
|
web?: boolean | null
|
|
1852
1844
|
browser?: boolean | null
|
|
@@ -1867,7 +1859,6 @@ export interface RawConsumeOptions {
|
|
|
1867
1859
|
strictVersion: boolean
|
|
1868
1860
|
singleton: boolean
|
|
1869
1861
|
eager: boolean
|
|
1870
|
-
treeShakingMode?: string
|
|
1871
1862
|
}
|
|
1872
1863
|
|
|
1873
1864
|
export interface RawConsumeSharedPluginOptions {
|
|
@@ -2603,12 +2594,6 @@ export interface RawOptimizationOptions {
|
|
|
2603
2594
|
avoidEntryIife: boolean
|
|
2604
2595
|
}
|
|
2605
2596
|
|
|
2606
|
-
export interface RawOptimizeSharedConfig {
|
|
2607
|
-
shareKey: string
|
|
2608
|
-
treeShaking: boolean
|
|
2609
|
-
usedExports?: Array<string>
|
|
2610
|
-
}
|
|
2611
|
-
|
|
2612
2597
|
export interface RawOptions {
|
|
2613
2598
|
name?: string
|
|
2614
2599
|
mode?: undefined | 'production' | 'development' | 'none'
|
|
@@ -2709,7 +2694,6 @@ export interface RawProvideOptions {
|
|
|
2709
2694
|
singleton?: boolean
|
|
2710
2695
|
requiredVersion?: string | false | undefined
|
|
2711
2696
|
strictVersion?: boolean
|
|
2712
|
-
treeShakingMode?: string
|
|
2713
2697
|
}
|
|
2714
2698
|
|
|
2715
2699
|
export interface RawRelated {
|
|
@@ -2847,21 +2831,6 @@ export interface RawRuntimeChunkOptions {
|
|
|
2847
2831
|
name: string | ((entrypoint: { name: string }) => string)
|
|
2848
2832
|
}
|
|
2849
2833
|
|
|
2850
|
-
export interface RawSharedContainerPluginOptions {
|
|
2851
|
-
name: string
|
|
2852
|
-
request: string
|
|
2853
|
-
version: string
|
|
2854
|
-
fileName?: string
|
|
2855
|
-
library: JsLibraryOptions
|
|
2856
|
-
}
|
|
2857
|
-
|
|
2858
|
-
export interface RawSharedUsedExportsOptimizerPluginOptions {
|
|
2859
|
-
shared: Array<RawOptimizeSharedConfig>
|
|
2860
|
-
injectTreeShakingUsedExports?: boolean
|
|
2861
|
-
manifestFileName?: string
|
|
2862
|
-
statsFileName?: string
|
|
2863
|
-
}
|
|
2864
|
-
|
|
2865
2834
|
export interface RawSizeLimitsPluginOptions {
|
|
2866
2835
|
assetFilter?: (assetFilename: string) => boolean
|
|
2867
2836
|
hints?: "error" | "warning"
|
|
@@ -2899,8 +2868,6 @@ export interface RawSplitChunksOptions {
|
|
|
2899
2868
|
export interface RawStatsBuildInfo {
|
|
2900
2869
|
buildVersion: string
|
|
2901
2870
|
buildName?: string
|
|
2902
|
-
target?: Array<string>
|
|
2903
|
-
plugins?: Array<string>
|
|
2904
2871
|
}
|
|
2905
2872
|
|
|
2906
2873
|
export interface RawStatsOptions {
|
|
Binary file
|
|
@@ -20,19 +20,7 @@ export type ConsumesConfig = {
|
|
|
20
20
|
shareScope?: string;
|
|
21
21
|
singleton?: boolean;
|
|
22
22
|
strictVersion?: boolean;
|
|
23
|
-
treeShakingMode?: 'server-calc' | 'runtime-infer';
|
|
24
23
|
};
|
|
25
|
-
export declare function normalizeConsumeShareOptions(consumes: Consumes, shareScope?: string): [string, {
|
|
26
|
-
import: string | undefined;
|
|
27
|
-
shareScope: string;
|
|
28
|
-
shareKey: string;
|
|
29
|
-
requiredVersion: string | false | undefined;
|
|
30
|
-
strictVersion: boolean;
|
|
31
|
-
packageName: string | undefined;
|
|
32
|
-
singleton: boolean;
|
|
33
|
-
eager: boolean;
|
|
34
|
-
treeShakingMode: "server-calc" | "runtime-infer" | undefined;
|
|
35
|
-
}][];
|
|
36
24
|
export declare class ConsumeSharedPlugin extends RspackBuiltinPlugin {
|
|
37
25
|
name: BuiltinPluginName;
|
|
38
26
|
_options: {
|
|
@@ -45,7 +33,6 @@ export declare class ConsumeSharedPlugin extends RspackBuiltinPlugin {
|
|
|
45
33
|
packageName: string | undefined;
|
|
46
34
|
singleton: boolean;
|
|
47
35
|
eager: boolean;
|
|
48
|
-
treeShakingMode: "server-calc" | "runtime-infer" | undefined;
|
|
49
36
|
}][];
|
|
50
37
|
enhanced: boolean;
|
|
51
38
|
};
|
|
@@ -23,26 +23,7 @@ type ProvidesEnhancedExtraConfig = {
|
|
|
23
23
|
singleton?: boolean;
|
|
24
24
|
strictVersion?: boolean;
|
|
25
25
|
requiredVersion?: false | string;
|
|
26
|
-
/**
|
|
27
|
-
* Tree shaking strategy for the shared module.
|
|
28
|
-
*/
|
|
29
|
-
treeShakingMode?: 'server-calc' | 'runtime-infer';
|
|
30
26
|
};
|
|
31
|
-
export declare function normalizeProvideShareOptions<Enhanced extends boolean = false>(options: Provides<Enhanced>, shareScope?: string, enhanced?: boolean): [string, {
|
|
32
|
-
shareKey: string;
|
|
33
|
-
version: string | false | undefined;
|
|
34
|
-
shareScope: string;
|
|
35
|
-
eager: boolean;
|
|
36
|
-
} | {
|
|
37
|
-
singleton: boolean | undefined;
|
|
38
|
-
requiredVersion: string | false | undefined;
|
|
39
|
-
strictVersion: boolean | undefined;
|
|
40
|
-
treeShakingMode: "server-calc" | "runtime-infer" | undefined;
|
|
41
|
-
shareKey: string;
|
|
42
|
-
version: string | false | undefined;
|
|
43
|
-
shareScope: string;
|
|
44
|
-
eager: boolean;
|
|
45
|
-
}][];
|
|
46
27
|
export declare class ProvideSharedPlugin<Enhanced extends boolean = false> extends RspackBuiltinPlugin {
|
|
47
28
|
name: BuiltinPluginName;
|
|
48
29
|
_provides: [string, Omit<RawProvideOptions, 'key'>][];
|
|
@@ -9,11 +9,6 @@ export type SharedItem = string;
|
|
|
9
9
|
export type SharedObject = {
|
|
10
10
|
[k: string]: SharedConfig | SharedItem;
|
|
11
11
|
};
|
|
12
|
-
export type TreeShakingConfig = {
|
|
13
|
-
usedExports?: string[];
|
|
14
|
-
mode?: 'server-calc' | 'runtime-infer';
|
|
15
|
-
filename?: string;
|
|
16
|
-
};
|
|
17
12
|
export type SharedConfig = {
|
|
18
13
|
eager?: boolean;
|
|
19
14
|
import?: false | SharedItem;
|
|
@@ -24,35 +19,7 @@ export type SharedConfig = {
|
|
|
24
19
|
singleton?: boolean;
|
|
25
20
|
strictVersion?: boolean;
|
|
26
21
|
version?: false | string;
|
|
27
|
-
treeShaking?: TreeShakingConfig;
|
|
28
22
|
};
|
|
29
|
-
export type NormalizedSharedOptions = [string, SharedConfig][];
|
|
30
|
-
export declare function normalizeSharedOptions(shared: Shared): NormalizedSharedOptions;
|
|
31
|
-
export declare function createProvideShareOptions(normalizedSharedOptions: NormalizedSharedOptions): {
|
|
32
|
-
[x: string]: {
|
|
33
|
-
shareKey: string;
|
|
34
|
-
shareScope: string | undefined;
|
|
35
|
-
version: string | false | undefined;
|
|
36
|
-
eager: boolean | undefined;
|
|
37
|
-
singleton: boolean | undefined;
|
|
38
|
-
requiredVersion: string | false | undefined;
|
|
39
|
-
strictVersion: boolean | undefined;
|
|
40
|
-
treeShakingMode: "server-calc" | "runtime-infer" | undefined;
|
|
41
|
-
};
|
|
42
|
-
}[];
|
|
43
|
-
export declare function createConsumeShareOptions(normalizedSharedOptions: NormalizedSharedOptions): {
|
|
44
|
-
[x: string]: {
|
|
45
|
-
import: string | false | undefined;
|
|
46
|
-
shareKey: string;
|
|
47
|
-
shareScope: string | undefined;
|
|
48
|
-
requiredVersion: string | false | undefined;
|
|
49
|
-
strictVersion: boolean | undefined;
|
|
50
|
-
singleton: boolean | undefined;
|
|
51
|
-
packageName: string | undefined;
|
|
52
|
-
eager: boolean | undefined;
|
|
53
|
-
treeShakingMode: "server-calc" | "runtime-infer" | undefined;
|
|
54
|
-
};
|
|
55
|
-
}[];
|
|
56
23
|
export declare class SharePlugin {
|
|
57
24
|
_shareScope: string | undefined;
|
|
58
25
|
_consumes: {
|
|
@@ -65,7 +32,6 @@ export declare class SharePlugin {
|
|
|
65
32
|
singleton: boolean | undefined;
|
|
66
33
|
packageName: string | undefined;
|
|
67
34
|
eager: boolean | undefined;
|
|
68
|
-
treeShakingMode: "server-calc" | "runtime-infer" | undefined;
|
|
69
35
|
};
|
|
70
36
|
}[];
|
|
71
37
|
_provides: {
|
|
@@ -77,11 +43,9 @@ export declare class SharePlugin {
|
|
|
77
43
|
singleton: boolean | undefined;
|
|
78
44
|
requiredVersion: string | false | undefined;
|
|
79
45
|
strictVersion: boolean | undefined;
|
|
80
|
-
treeShakingMode: "server-calc" | "runtime-infer" | undefined;
|
|
81
46
|
};
|
|
82
47
|
}[];
|
|
83
48
|
_enhanced: boolean;
|
|
84
|
-
_sharedOptions: NormalizedSharedOptions;
|
|
85
49
|
constructor(options: SharePluginOptions);
|
|
86
50
|
apply(compiler: Compiler): void;
|
|
87
51
|
}
|
package/dist/sharing/utils.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack-canary/browser",
|
|
3
|
-
"version": "1.7.3-canary-
|
|
3
|
+
"version": "1.7.3-canary-6991b7b5-20260119174555",
|
|
4
4
|
"webpackVersion": "5.75.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Rspack for running in the browser. This is still in early stage and may not follow the semver.",
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { type BuiltinPlugin, BuiltinPluginName } from '@rspack/binding';
|
|
2
|
-
import { RspackBuiltinPlugin } from '../builtin-plugin/base';
|
|
3
|
-
import type { Compiler } from '../Compiler';
|
|
4
|
-
import { type NormalizedSharedOptions } from './SharePlugin';
|
|
5
|
-
export type CollectSharedEntryPluginOptions = {
|
|
6
|
-
sharedOptions: NormalizedSharedOptions;
|
|
7
|
-
shareScope?: string;
|
|
8
|
-
};
|
|
9
|
-
export type ShareRequestsMap = Record<string, {
|
|
10
|
-
shareScope: string;
|
|
11
|
-
requests: [string, string][];
|
|
12
|
-
}>;
|
|
13
|
-
export declare class CollectSharedEntryPlugin extends RspackBuiltinPlugin {
|
|
14
|
-
name: BuiltinPluginName;
|
|
15
|
-
sharedOptions: NormalizedSharedOptions;
|
|
16
|
-
private _collectedEntries;
|
|
17
|
-
constructor(options: CollectSharedEntryPluginOptions);
|
|
18
|
-
getData(): ShareRequestsMap;
|
|
19
|
-
getFilename(): string;
|
|
20
|
-
apply(compiler: Compiler): void;
|
|
21
|
-
raw(): BuiltinPlugin;
|
|
22
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import type { Compiler } from '../Compiler';
|
|
2
|
-
import type { LibraryOptions, Plugins } from '../config';
|
|
3
|
-
import { type ModuleFederationManifestPluginOptions } from '../container/ModuleFederationManifestPlugin';
|
|
4
|
-
import type { Shared, SharedConfig } from './SharePlugin';
|
|
5
|
-
export type MakeRequired<T, K extends keyof T> = Required<Pick<T, K>> & Omit<T, K>;
|
|
6
|
-
export interface IndependentSharePluginOptions {
|
|
7
|
-
name: string;
|
|
8
|
-
shared: Shared;
|
|
9
|
-
library?: LibraryOptions;
|
|
10
|
-
outputDir?: string;
|
|
11
|
-
plugins?: Plugins;
|
|
12
|
-
treeShaking?: boolean;
|
|
13
|
-
manifest?: ModuleFederationManifestPluginOptions;
|
|
14
|
-
injectTreeShakingUsedExports?: boolean;
|
|
15
|
-
treeShakingSharedExcludePlugins?: string[];
|
|
16
|
-
}
|
|
17
|
-
export type ShareFallback = Record<string, [string, string, string][]>;
|
|
18
|
-
export declare class IndependentSharedPlugin {
|
|
19
|
-
mfName: string;
|
|
20
|
-
shared: Shared;
|
|
21
|
-
library?: LibraryOptions;
|
|
22
|
-
sharedOptions: [string, SharedConfig][];
|
|
23
|
-
outputDir: string;
|
|
24
|
-
plugins: Plugins;
|
|
25
|
-
treeShaking?: boolean;
|
|
26
|
-
manifest?: ModuleFederationManifestPluginOptions;
|
|
27
|
-
buildAssets: ShareFallback;
|
|
28
|
-
injectTreeShakingUsedExports?: boolean;
|
|
29
|
-
treeShakingSharedExcludePlugins?: string[];
|
|
30
|
-
name: string;
|
|
31
|
-
constructor(options: IndependentSharePluginOptions);
|
|
32
|
-
apply(compiler: Compiler): void;
|
|
33
|
-
private createIndependentCompilers;
|
|
34
|
-
private createIndependentCompiler;
|
|
35
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { type BuiltinPlugin, BuiltinPluginName, type RawSharedContainerPluginOptions } from '@rspack/binding';
|
|
2
|
-
import { RspackBuiltinPlugin } from '../builtin-plugin/base';
|
|
3
|
-
import type { Compiler } from '../Compiler';
|
|
4
|
-
import type { LibraryOptions } from '../config';
|
|
5
|
-
export type SharedContainerPluginOptions = {
|
|
6
|
-
mfName: string;
|
|
7
|
-
shareName: string;
|
|
8
|
-
version: string;
|
|
9
|
-
request: string;
|
|
10
|
-
library?: LibraryOptions;
|
|
11
|
-
independentShareFileName?: string;
|
|
12
|
-
};
|
|
13
|
-
export declare class SharedContainerPlugin extends RspackBuiltinPlugin {
|
|
14
|
-
name: BuiltinPluginName;
|
|
15
|
-
filename: string;
|
|
16
|
-
_options: RawSharedContainerPluginOptions;
|
|
17
|
-
_shareName: string;
|
|
18
|
-
_globalName: string;
|
|
19
|
-
constructor(options: SharedContainerPluginOptions);
|
|
20
|
-
getData(): (string | undefined)[];
|
|
21
|
-
raw(compiler: Compiler): BuiltinPlugin;
|
|
22
|
-
apply(compiler: Compiler): void;
|
|
23
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { BuiltinPlugin } from '@rspack/binding';
|
|
2
|
-
import { BuiltinPluginName } from '@rspack/binding';
|
|
3
|
-
import { RspackBuiltinPlugin } from '../builtin-plugin/base';
|
|
4
|
-
import { type ModuleFederationManifestPluginOptions } from '../container/ModuleFederationManifestPlugin';
|
|
5
|
-
import type { NormalizedSharedOptions } from './SharePlugin';
|
|
6
|
-
export declare class SharedUsedExportsOptimizerPlugin extends RspackBuiltinPlugin {
|
|
7
|
-
name: BuiltinPluginName;
|
|
8
|
-
private sharedOptions;
|
|
9
|
-
private injectTreeShakingUsedExports;
|
|
10
|
-
private manifestOptions;
|
|
11
|
-
constructor(sharedOptions: NormalizedSharedOptions, injectTreeShakingUsedExports?: boolean, manifestOptions?: ModuleFederationManifestPluginOptions);
|
|
12
|
-
private buildOptions;
|
|
13
|
-
raw(): BuiltinPlugin | undefined;
|
|
14
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { Compiler } from '../Compiler';
|
|
2
|
-
import type { ModuleFederationPluginOptions } from '../container/ModuleFederationPlugin';
|
|
3
|
-
export interface TreeshakingSharedPluginOptions {
|
|
4
|
-
mfConfig: ModuleFederationPluginOptions;
|
|
5
|
-
secondary?: boolean;
|
|
6
|
-
}
|
|
7
|
-
export declare class TreeShakingSharedPlugin {
|
|
8
|
-
mfConfig: ModuleFederationPluginOptions;
|
|
9
|
-
outputDir: string;
|
|
10
|
-
secondary?: boolean;
|
|
11
|
-
private _independentSharePlugin?;
|
|
12
|
-
name: string;
|
|
13
|
-
constructor(options: TreeshakingSharedPluginOptions);
|
|
14
|
-
apply(compiler: Compiler): void;
|
|
15
|
-
get buildAssets(): import("./IndependentSharedPlugin").ShareFallback;
|
|
16
|
-
}
|