multi-db-orm 2.1.4 → 2.1.6

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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +2 -1
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- const { MultiDBSafe, FireStoreDB, MongoDB, SQLiteDB, OracleDB } = require("./databases");
1
+ const { MultiDBSafe, FireStoreDB, MongoDB, SQLiteDB, OracleDB, MySQLDB } = require("./databases");
2
2
  const { Sync } = require("./sync");
3
3
 
4
4
  module.exports = {
@@ -7,5 +7,6 @@ module.exports = {
7
7
  MongoDB,
8
8
  SQLiteDB,
9
9
  OracleDB,
10
+ MySQLDB,
10
11
  Sync
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-db-orm",
3
- "version": "2.1.4",
3
+ "version": "2.1.6",
4
4
  "description": "CRUD , Backup , Restore and Migration library for multiple databases",
5
5
  "main": "index.js",
6
6
  "dependencies": {
@@ -15,6 +15,7 @@
15
15
  "sqlite3": "^5.0.0"
16
16
  },
17
17
  "scripts": {
18
+ "release": "git add -A && git commit -m Update-Files | npm version patch && git add -A && git commit -m Update-Version && git push && npm publish",
18
19
  "postinstall": "node postinstall.js",
19
20
  "test": "node test/test.js"
20
21
  },