orchid-orm 1.5.22 → 1.5.24

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 CHANGED
@@ -1564,7 +1564,7 @@ const ts = {
1564
1564
  };
1565
1565
 
1566
1566
  const getImportPath = (from, to) => {
1567
- const rel = path__default.posix.relative(path__default.dirname(from), to);
1567
+ const rel = path__default.relative(path__default.dirname(from), to).split(path__default.sep).join(path__default.posix.sep);
1568
1568
  const importPath = rel.startsWith("./") || rel.startsWith("../") ? rel : `./${rel}`;
1569
1569
  return importPath.replace(/\.[tj]s$/, "");
1570
1570
  };