@content-collections/core 0.13.0 → 0.13.1
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.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1818,13 +1818,13 @@ function isImport(value) {
|
|
|
1818
1818
|
function createDefaultImport(path$1) {
|
|
1819
1819
|
return {
|
|
1820
1820
|
__cc_import: true,
|
|
1821
|
-
path: path$1
|
|
1821
|
+
path: path$1.replace(/\\/g, "/")
|
|
1822
1822
|
};
|
|
1823
1823
|
}
|
|
1824
1824
|
function createNamedImport(name, path$1) {
|
|
1825
1825
|
return {
|
|
1826
1826
|
__cc_import: true,
|
|
1827
|
-
path: path$1,
|
|
1827
|
+
path: path$1.replace(/\\/g, "/"),
|
|
1828
1828
|
name
|
|
1829
1829
|
};
|
|
1830
1830
|
}
|