murmuration-mariadb 2.0.33 → 2.0.34
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/lib/index.js +6 -6
- package/package.json +1 -1
- package/src/index.js +5 -5
package/lib/index.js
CHANGED
|
@@ -32,15 +32,15 @@ _export(exports, {
|
|
|
32
32
|
}
|
|
33
33
|
});
|
|
34
34
|
var _murmuration = require("murmuration");
|
|
35
|
-
var _using = /*#__PURE__*/ _interop_require_default(require("./
|
|
36
|
-
var _migrate = /*#__PURE__*/ _interop_require_default(require("./
|
|
37
|
-
var _statement = /*#__PURE__*/ _interop_require_default(require("./
|
|
38
|
-
var _connection = /*#__PURE__*/ _interop_require_default(require("./
|
|
39
|
-
var _transaction = /*#__PURE__*/ _interop_require_default(require("./
|
|
35
|
+
var _using = /*#__PURE__*/ _interop_require_default(require("./using"));
|
|
36
|
+
var _migrate = /*#__PURE__*/ _interop_require_default(require("./migrate"));
|
|
37
|
+
var _statement = /*#__PURE__*/ _interop_require_default(require("./statement"));
|
|
38
|
+
var _connection = /*#__PURE__*/ _interop_require_default(require("./connection"));
|
|
39
|
+
var _transaction = /*#__PURE__*/ _interop_require_default(require("./transaction"));
|
|
40
40
|
function _interop_require_default(obj) {
|
|
41
41
|
return obj && obj.__esModule ? obj : {
|
|
42
42
|
default: obj
|
|
43
43
|
};
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9pbmRleC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuZXhwb3J0IHsgZGF0YWJhc2UsIEN1c3RvbU1pZ3JhdGlvbiB9IGZyb20gXCJtdXJtdXJhdGlvblwiO1xuXG5leHBvcnQgeyBkZWZhdWx0IGFzIHVzaW5nIH0gZnJvbSBcIi4vdXNpbmdcIjtcbmV4cG9ydCB7IGRlZmF1bHQgYXMgbWlncmF0ZSB9IGZyb20gXCIuL21pZ3JhdGVcIjtcbmV4cG9ydCB7IGRlZmF1bHQgYXMgU3RhdGVtZW50IH0gZnJvbSBcIi4vc3RhdGVtZW50XCI7XG5leHBvcnQgeyBkZWZhdWx0IGFzIENvbm5lY3Rpb24gfSBmcm9tIFwiLi9jb25uZWN0aW9uXCI7XG5leHBvcnQgeyBkZWZhdWx0IGFzIHRyYW5zYWN0aW9uIH0gZnJvbSBcIi4vdHJhbnNhY3Rpb25cIjtcbiJdLCJuYW1lcyI6WyJDb25uZWN0aW9uIiwiQ3VzdG9tTWlncmF0aW9uIiwiU3RhdGVtZW50IiwiZGF0YWJhc2UiLCJtaWdyYXRlIiwidHJhbnNhY3Rpb24iLCJ1c2luZyJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7O1FBT29CQTtlQUFBQSxtQkFBVTs7UUFMWEM7ZUFBQUEsNEJBQWU7O1FBSWRDO2VBQUFBLGtCQUFTOztRQUpwQkM7ZUFBQUEscUJBQVE7O1FBR0dDO2VBQUFBLGdCQUFPOztRQUdQQztlQUFBQSxvQkFBVzs7UUFKWEM7ZUFBQUEsY0FBSzs7OzJCQUZpQjs0REFFVDs4REFDRTtnRUFDRTtpRUFDQztrRUFDQyJ9
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "murmuration-mariadb",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.34",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/murmuration-mariadb",
|
|
7
7
|
"description": "Statements, transactions and migrations for MariaDB.",
|
package/src/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
export { database, CustomMigration } from "murmuration";
|
|
4
4
|
|
|
5
|
-
export { default as using } from "./
|
|
6
|
-
export { default as migrate } from "./
|
|
7
|
-
export { default as Statement } from "./
|
|
8
|
-
export { default as Connection } from "./
|
|
9
|
-
export { default as transaction } from "./
|
|
5
|
+
export { default as using } from "./using";
|
|
6
|
+
export { default as migrate } from "./migrate";
|
|
7
|
+
export { default as Statement } from "./statement";
|
|
8
|
+
export { default as Connection } from "./connection";
|
|
9
|
+
export { default as transaction } from "./transaction";
|