@sqb/migrator 4.10.5 → 4.11.0
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/README.md +20 -9
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
<center>
|
|
3
2
|
<p>
|
|
4
3
|
<img src="https://user-images.githubusercontent.com/3836517/32965280-1a2b63ce-cbe7-11e7-8ee1-ba47313503c5.png" width="500px" alt="SQB Logo"/>
|
|
@@ -6,7 +5,7 @@
|
|
|
6
5
|
</center>
|
|
7
6
|
|
|
8
7
|
<br>
|
|
9
|
-
|
|
8
|
+
|
|
10
9
|
[![NPM Version][npm-image]][npm-url]
|
|
11
10
|
[![NPM Downloads][downloads-image]][downloads-url]
|
|
12
11
|
[![Build Status][travis-image]][travis-url]
|
|
@@ -15,7 +14,6 @@
|
|
|
15
14
|
[![DevDependencies][devdependencies-image]][devdependencies-url]
|
|
16
15
|
[![Package Quality][quality-image]][quality-url]
|
|
17
16
|
|
|
18
|
-
|
|
19
17
|
## About SQB
|
|
20
18
|
|
|
21
19
|
SQB is an extensible, multi-dialect SQL query builder and Database connection wrapper for NodeJS.
|
|
@@ -27,8 +25,7 @@ SQB is an extensible, multi-dialect SQL query builder and Database connection wr
|
|
|
27
25
|
- Fast applications with low memory requirements
|
|
28
26
|
- Let applications work with large data tables efficiently
|
|
29
27
|
- Support latest JavaScript language standards
|
|
30
|
-
- Lightweight and extensible framework.
|
|
31
|
-
|
|
28
|
+
- Lightweight and extensible framework.
|
|
32
29
|
|
|
33
30
|
You can report bugs and discuss features on the [GitHub issues](https://github.com/sqbjs/sqb/issues) page
|
|
34
31
|
|
|
@@ -36,7 +33,6 @@ Thanks to all of the great [contributions](https://github.com/sqbjs/sqb/graphs/c
|
|
|
36
33
|
|
|
37
34
|
You may want to check detailed [DOCUMENTATION](https://sqbjs.github.io/sqb/)
|
|
38
35
|
|
|
39
|
-
|
|
40
36
|
## Installation
|
|
41
37
|
|
|
42
38
|
```bash
|
|
@@ -45,25 +41,40 @@ $ npm install @sqb/migrator --save
|
|
|
45
41
|
|
|
46
42
|
## Node Compatibility
|
|
47
43
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
44
|
+
- node >= 16.x
|
|
45
|
+
|
|
51
46
|
### License
|
|
47
|
+
|
|
52
48
|
SQB is available under [MIT](LICENSE) license.
|
|
53
49
|
|
|
54
50
|
[npm-image]: https://img.shields.io/npm/v/@sqb/migrator.svg
|
|
51
|
+
|
|
55
52
|
[npm-url]: https://npmjs.org/package/@sqb/migrator
|
|
53
|
+
|
|
56
54
|
[travis-image]: https://img.shields.io/travis/sqbjs/@sqb/migrator/master.svg
|
|
55
|
+
|
|
57
56
|
[travis-url]: https://travis-ci.org/sqbjs/@sqb/migrator
|
|
57
|
+
|
|
58
58
|
[coveralls-image]: https://img.shields.io/coveralls/sqbjs/@sqb/migrator/master.svg
|
|
59
|
+
|
|
59
60
|
[coveralls-url]: https://coveralls.io/r/sqbjs/@sqb/migrator
|
|
61
|
+
|
|
60
62
|
[downloads-image]: https://img.shields.io/npm/dm/@sqb/migrator.svg
|
|
63
|
+
|
|
61
64
|
[downloads-url]: https://npmjs.org/package/@sqb/migrator
|
|
65
|
+
|
|
62
66
|
[gitter-image]: https://badges.gitter.im/sqbjs/@sqb/migrator.svg
|
|
67
|
+
|
|
63
68
|
[gitter-url]: https://gitter.im/sqbjs/@sqb/migrator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
|
|
69
|
+
|
|
64
70
|
[dependencies-image]: https://david-dm.org/sqbjs/@sqb/migrator/status.svg
|
|
71
|
+
|
|
65
72
|
[dependencies-url]:https://david-dm.org/sqbjs/@sqb/migrator
|
|
73
|
+
|
|
66
74
|
[devdependencies-image]: https://david-dm.org/sqbjs/@sqb/migrator/dev-status.svg
|
|
75
|
+
|
|
67
76
|
[devdependencies-url]:https://david-dm.org/sqbjs/@sqb/migrator?type=dev
|
|
77
|
+
|
|
68
78
|
[quality-image]: http://npm.packagequality.com/shield/@sqb/migrator.png
|
|
79
|
+
|
|
69
80
|
[quality-url]: http://packagequality.com/#?package=@sqb/migrator
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqb/migrator",
|
|
3
3
|
"description": "Database migrator for SQB",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.11.0",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Eray Hanoglu <e.hanoglu@panates.com>",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build:cjs": "tsc -b tsconfig-build-cjs.json",
|
|
25
25
|
"build:esm": "tsc -b tsconfig-build-esm.json",
|
|
26
26
|
"postbuild": "cp README.md package.json ../../LICENSE ../../build/migrator && cp ../../package.cjs.json ../../build/migrator/cjs/package.json",
|
|
27
|
-
"lint": "eslint .",
|
|
27
|
+
"lint": "eslint . --max-warnings=0",
|
|
28
28
|
"test": "jest",
|
|
29
29
|
"cover": "jest --collect-coverage",
|
|
30
30
|
"clean": "npm run clean:src | npm run clean:dist | npm run clean:cover",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"clean:cover": "rimraf ../../coverage/migrator"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"ts-gems": "^2.
|
|
36
|
+
"ts-gems": "^3.2.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@sqb/builder": "^4.
|
|
40
|
-
"@sqb/connect": "^4.
|
|
41
|
-
"@sqb/postgres": "^4.
|
|
39
|
+
"@sqb/builder": "^4.11.0",
|
|
40
|
+
"@sqb/connect": "^4.11.0",
|
|
41
|
+
"@sqb/postgres": "^4.11.0"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=16.0",
|