masterrecord 0.2.4 → 0.2.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/Migrations/cli.js CHANGED
@@ -45,11 +45,9 @@ program.option('-V', 'output the version');
45
45
  var executedLocation = process.cwd();
46
46
  // find context file from main folder location
47
47
  var contextInstance = migration.findContext(executedLocation, contextFileName);
48
- var context = new contextInstance.context();
49
48
  var snap = {
50
49
  file : contextInstance.fileLocation,
51
50
  executedLocation : executedLocation,
52
- context : context,
53
51
  contextEntities : [],
54
52
  contextFileName: contextFileName.toLowerCase()
55
53
  }
package/package.json CHANGED
@@ -6,9 +6,10 @@
6
6
  "deep-object-diff" : "^1.1.9",
7
7
  "pg" : "^8.16.3",
8
8
  "sync-mysql2" : "^1.0.6",
9
- "app-root-path": "^3.1.0"
9
+ "app-root-path": "^3.1.0",
10
+ "better-sqlite3": "^12.4.1"
10
11
  },
11
- "version": "0.2.4",
12
+ "version": "0.2.5",
12
13
  "description": "An Object-relational mapping for the Master framework. Master Record connects classes to relational database tables to establish a database with almost zero-configuration ",
13
14
  "homepage": "https://github.com/Tailor/MasterRecord#readme",
14
15
  "repository": {