bigal 14.1.18 → 14.1.20
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 +4 -0
- package/package.json +2 -2
- package/release.config.mjs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [14.1.20](https://github.com/bigalorm/bigal/compare/v14.1.19...v14.1.20) (2025-12-20)
|
|
2
|
+
|
|
3
|
+
## [14.1.19](https://github.com/bigalorm/bigal/compare/v14.1.18...v14.1.19) (2025-12-19)
|
|
4
|
+
|
|
1
5
|
## [14.1.18](https://github.com/bigalorm/bigal/compare/v14.1.17...v14.1.18) (2025-12-18)
|
|
2
6
|
|
|
3
7
|
## [14.1.17](https://github.com/bigalorm/bigal/compare/v14.1.16...v14.1.17) (2025-12-16)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bigal",
|
|
3
|
-
"version": "14.1.
|
|
3
|
+
"version": "14.1.20",
|
|
4
4
|
"description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/node": ">=20",
|
|
53
53
|
"chai": "6.2.1",
|
|
54
54
|
"eslint": "9.39.2",
|
|
55
|
-
"eslint-config-decent": "3.1.
|
|
55
|
+
"eslint-config-decent": "3.1.72",
|
|
56
56
|
"husky": "9.1.7",
|
|
57
57
|
"lint-staged": "16.2.7",
|
|
58
58
|
"markdownlint-cli": "0.47.0",
|
package/release.config.mjs
CHANGED
|
@@ -21,8 +21,8 @@ export default {
|
|
|
21
21
|
],
|
|
22
22
|
parserOpts: {
|
|
23
23
|
// eslint-disable-next-line security/detect-unsafe-regex
|
|
24
|
-
headerPattern: /^(\w+)(?:\([^)]
|
|
25
|
-
headerCorrespondence: ['type', 'subject'],
|
|
24
|
+
headerPattern: /^(\w+)(?:\(([^)]+)\))?: (.+)$/,
|
|
25
|
+
headerCorrespondence: ['type', 'scope', 'subject'],
|
|
26
26
|
},
|
|
27
27
|
},
|
|
28
28
|
],
|