@balena/abstract-sql-to-typescript 2.1.5 → 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.
- package/.husky/pre-commit +0 -2
- package/.versionbot/CHANGELOG.yml +22 -1
- package/CHANGELOG.md +6 -1
- package/package.json +4 -4
package/.husky/pre-commit
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Update prepare script for husky v9
|
|
3
|
+
hash: d2d1970b67a473031dad091c3451b78af9fa13f4
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Josh Bowling
|
|
9
|
+
nested: []
|
|
10
|
+
- subject: Update dependency husky to v9
|
|
11
|
+
hash: 0e0878a4ee4e55ea41a687807ddefba9d5eb1753
|
|
12
|
+
body: |
|
|
13
|
+
Update husky from 8.0.3 to 9.0.11
|
|
14
|
+
footer:
|
|
15
|
+
Change-type: patch
|
|
16
|
+
change-type: patch
|
|
17
|
+
author: Self-hosted Renovate Bot
|
|
18
|
+
nested: []
|
|
19
|
+
version: 2.1.6
|
|
20
|
+
title: ""
|
|
21
|
+
date: 2024-04-09T01:41:17.871Z
|
|
1
22
|
- commits:
|
|
2
23
|
- subject: Update dependency @balena/lint to v8
|
|
3
24
|
hash: ebafb1edda286e10394be6e137ac674645537b1a
|
|
@@ -10,7 +31,7 @@
|
|
|
10
31
|
nested: []
|
|
11
32
|
version: 2.1.5
|
|
12
33
|
title: ""
|
|
13
|
-
date: 2024-
|
|
34
|
+
date: 2024-04-09T01:09:23.010Z
|
|
14
35
|
- commits:
|
|
15
36
|
- subject: Update dependencies
|
|
16
37
|
hash: f5a822492b32f1395633f892c096a93058569441
|
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
-
## 2.1.
|
|
7
|
+
## 2.1.6 - 2024-04-09
|
|
8
|
+
|
|
9
|
+
* Update prepare script for husky v9 [Josh Bowling]
|
|
10
|
+
* Update dependency husky to v9 [Self-hosted Renovate Bot]
|
|
11
|
+
|
|
12
|
+
## 2.1.5 - 2024-04-09
|
|
8
13
|
|
|
9
14
|
* Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
|
|
10
15
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@balena/abstract-sql-to-typescript",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6",
|
|
4
4
|
"description": "A translator for abstract sql into typescript types.",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"types": "out/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"pretest": "npm run lint && npm run prepare",
|
|
9
9
|
"test": "mocha",
|
|
10
|
-
"prepare": "node -e \"try {
|
|
10
|
+
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && tsc --project ./tsconfig.build.json",
|
|
11
11
|
"lint": "balena-lint src test && tsc --noEmit",
|
|
12
12
|
"lint-fix": "balena-lint --fix src test"
|
|
13
13
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@types/common-tags": "^1.8.4",
|
|
26
26
|
"@types/mocha": "^10.0.6",
|
|
27
27
|
"chai": "^4.4.1",
|
|
28
|
-
"husky": "^
|
|
28
|
+
"husky": "^9.0.0",
|
|
29
29
|
"lint-staged": "^15.2.2",
|
|
30
30
|
"mocha": "^10.3.0",
|
|
31
31
|
"ts-node": "^10.9.2",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
"_": "test/**/*.ts"
|
|
46
46
|
},
|
|
47
47
|
"versionist": {
|
|
48
|
-
"publishedAt": "2024-
|
|
48
|
+
"publishedAt": "2024-04-09T01:41:18.090Z"
|
|
49
49
|
}
|
|
50
50
|
}
|