@module-federation/sdk 0.0.0-next-20240617024822 → 0.0.0-next-20240617032137
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/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -256,11 +256,11 @@ var parseEntry = function(str, devVerOrUrl) {
|
|
|
256
256
|
// Check if the string starts with a type
|
|
257
257
|
if (strSplit.length >= 2) {
|
|
258
258
|
var _strSplit = _to_array(strSplit), name = _strSplit[0], versionOrEntryArr = _strSplit.slice(1);
|
|
259
|
-
if (str.startsWith(
|
|
259
|
+
if (str.startsWith(SEPARATOR)) {
|
|
260
260
|
versionOrEntryArr = [
|
|
261
261
|
devVersionOrUrl || strSplit.slice(-1)[0]
|
|
262
262
|
];
|
|
263
|
-
name = strSplit.slice(0, -1).join(
|
|
263
|
+
name = strSplit.slice(0, -1).join(SEPARATOR);
|
|
264
264
|
}
|
|
265
265
|
var versionOrEntry = devVersionOrUrl || versionOrEntryArr.join(separator);
|
|
266
266
|
if (isEntry(versionOrEntry)) {
|
package/dist/index.esm.js
CHANGED
|
@@ -252,11 +252,11 @@ var parseEntry = function(str, devVerOrUrl) {
|
|
|
252
252
|
// Check if the string starts with a type
|
|
253
253
|
if (strSplit.length >= 2) {
|
|
254
254
|
var _strSplit = _to_array(strSplit), name = _strSplit[0], versionOrEntryArr = _strSplit.slice(1);
|
|
255
|
-
if (str.startsWith(
|
|
255
|
+
if (str.startsWith(SEPARATOR)) {
|
|
256
256
|
versionOrEntryArr = [
|
|
257
257
|
devVersionOrUrl || strSplit.slice(-1)[0]
|
|
258
258
|
];
|
|
259
|
-
name = strSplit.slice(0, -1).join(
|
|
259
|
+
name = strSplit.slice(0, -1).join(SEPARATOR);
|
|
260
260
|
}
|
|
261
261
|
var versionOrEntry = devVersionOrUrl || versionOrEntryArr.join(separator);
|
|
262
262
|
if (isEntry(versionOrEntry)) {
|
package/dist/package.json
CHANGED