rake-db 2.3.18 → 2.3.19

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # rake-db
2
2
 
3
+ ## 2.3.19
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix path resolution
8
+
3
9
  ## 2.3.18
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -1241,7 +1241,7 @@ const processMigration = async (db, up, file, config, options, appCodeUpdaterCac
1241
1241
  if (callback) {
1242
1242
  change(callback);
1243
1243
  } else {
1244
- await config.import(url.pathToFileURL(file.path).toString());
1244
+ await config.import(url.pathToFileURL(file.path).pathname);
1245
1245
  changeCache[file.path] = getCurrentChangeCallback();
1246
1246
  }
1247
1247
  await getCurrentPromise();