@module-federation/sdk 0.21.4 → 0.21.6
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/src/constant.d.ts
CHANGED
|
@@ -2,17 +2,19 @@ export declare const FederationModuleManifest = "federation-manifest.json";
|
|
|
2
2
|
export declare const MANIFEST_EXT = ".json";
|
|
3
3
|
export declare const BROWSER_LOG_KEY = "FEDERATION_DEBUG";
|
|
4
4
|
export declare const NameTransformSymbol: {
|
|
5
|
-
AT:
|
|
6
|
-
HYPHEN:
|
|
7
|
-
SLASH:
|
|
5
|
+
readonly AT: "@";
|
|
6
|
+
readonly HYPHEN: "-";
|
|
7
|
+
readonly SLASH: "/";
|
|
8
8
|
};
|
|
9
9
|
export declare const NameTransformMap: {
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
10
|
+
readonly "@": "scope_";
|
|
11
|
+
readonly "-": "_";
|
|
12
|
+
readonly "/": "__";
|
|
13
13
|
};
|
|
14
14
|
export declare const EncodedNameTransformMap: {
|
|
15
|
-
|
|
15
|
+
scope_: "@";
|
|
16
|
+
_: "-";
|
|
17
|
+
__: "/";
|
|
16
18
|
};
|
|
17
19
|
export declare const SEPARATOR = ":";
|
|
18
20
|
export declare const ManifestFileName = "mf-manifest.json";
|