smartbundle 0.0.1 → 0.0.2
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.
@@ -128,7 +128,7 @@ async function run(args) {
|
|
128
128
|
}
|
129
129
|
for (const path of exportPath) {
|
130
130
|
setExports(exportsMap, path, (entry) => {
|
131
|
-
entry.mjs =
|
131
|
+
entry.mjs = el.fileName;
|
132
132
|
return entry;
|
133
133
|
});
|
134
134
|
}
|
@@ -142,7 +142,7 @@ async function run(args) {
|
|
142
142
|
}
|
143
143
|
for (const path of exportPath2) {
|
144
144
|
setExports(exportsMap, path, (entry) => {
|
145
|
-
entry.mdts =
|
145
|
+
entry.mdts = el.fileName;
|
146
146
|
return entry;
|
147
147
|
});
|
148
148
|
}
|