millas 0.1.6 → 0.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "millas",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "A modern batteries-included backend framework for Node.js — built on Express, inspired by Laravel, Django, and FastAPI",
5
5
  "main": "src/index.js",
6
6
  "exports": {
@@ -156,7 +156,7 @@ async function getDbConnection() {
156
156
  }
157
157
 
158
158
  async function getRunner() {
159
- const { MigrationRunner } = require('../orm/migration/MigrationRunner');
159
+ const MigrationRunner = require('../orm/migration/MigrationRunner');
160
160
  const ctx = getProjectContext();
161
161
  const db = await getDbConnection();
162
162
  return new MigrationRunner(db, ctx.migrationsPath);