@marko/vite 5.3.4 → 5.3.5
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.mjs +4 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1656,7 +1656,10 @@ function getKnownTemplates(cwd) {
|
|
|
1656
1656
|
return knownTemplates;
|
|
1657
1657
|
}
|
|
1658
1658
|
function toSourceMap(map) {
|
|
1659
|
-
return map ? {
|
|
1659
|
+
return map ? {
|
|
1660
|
+
names: map.names,
|
|
1661
|
+
mappings: map.mappings
|
|
1662
|
+
} : null;
|
|
1660
1663
|
}
|
|
1661
1664
|
export {
|
|
1662
1665
|
markoPlugin as default
|