bigal 10.0.3-beta → 10.0.3
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/CHANGELOG.md +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
- Fix string comparison operators with arrays. Wildcard characters in array values passed to `startsWith`, `contains`,
|
|
7
7
|
and `endsWith` were ignored. This fix changes the generated SQL to explicitly evaluate each array value individually
|
|
8
8
|
using `ilike`
|
|
9
|
+
- Remove unnecessary `await` operators from `then()` functions
|
|
9
10
|
|
|
10
11
|
## 10.0.2 - 2022-03-02
|
|
11
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigal",
|
|
3
|
-
"version": "10.0.3
|
|
3
|
+
"version": "10.0.3",
|
|
4
4
|
"description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"lint:code": "eslint --fix --ext .ts src tests",
|
|
67
67
|
"lint": "run-p lint:*",
|
|
68
68
|
"lint-staged": "lint-staged",
|
|
69
|
-
"dist": "if [ -d \"src\" ]; then rm -rf dist && npm run build && npm run lint && npm run test && cp package.json dist && cp package-lock.json dist && cp *.md dist && cp LICENSE dist && cp .npmignore dist && cd dist && npm publish
|
|
69
|
+
"dist": "if [ -d \"src\" ]; then rm -rf dist && npm run build && npm run lint && npm run test && cp package.json dist && cp package-lock.json dist && cp *.md dist && cp LICENSE dist && cp .npmignore dist && cd dist && npm publish; fi",
|
|
70
70
|
"prepublishOnly": "if [ -d \"src\" ]; then echo \"Please use: npm run dist\" && exit 125; fi && pinst --disable",
|
|
71
71
|
"_postinstall": "husky install",
|
|
72
72
|
"postpublish": "pinst --enable"
|