@balena/abstract-sql-compiler 7.20.21 → 7.20.22
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 +4 -0
- package/.versionbot/CHANGELOG.yml +15 -1
- package/CHANGELOG.md +4 -0
- package/package.json +3 -8
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: "Dev: Migrate husky setup for v8"
|
|
3
|
+
hash: 86255a81aba99a7fee2efb23d68a473e0382525d
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
Signed-off-by: Josh Bowling <josh@monarci.com>
|
|
9
|
+
signed-off-by: Josh Bowling <josh@monarci.com>
|
|
10
|
+
author: Josh Bowling
|
|
11
|
+
nested: []
|
|
12
|
+
version: 7.20.22
|
|
13
|
+
title: ""
|
|
14
|
+
date: 2022-11-18T00:56:20.380Z
|
|
1
15
|
- commits:
|
|
2
16
|
- subject: Update dependency husky to 8.0.2
|
|
3
17
|
hash: d8f66bc3b81070cfca4c9fb0aec03d69ad2507b4
|
|
@@ -12,7 +26,7 @@
|
|
|
12
26
|
nested: []
|
|
13
27
|
version: 7.20.21
|
|
14
28
|
title: ""
|
|
15
|
-
date: 2022-11-
|
|
29
|
+
date: 2022-11-17T17:05:29.025Z
|
|
16
30
|
- commits:
|
|
17
31
|
- subject: "Dev: Move types to dev dependencies"
|
|
18
32
|
hash: 1a7bc9dd069b8459e3bc3ddef9287bad13722232
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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
|
+
## 7.20.22 - 2022-11-18
|
|
8
|
+
|
|
9
|
+
* Dev: Migrate husky setup for v8 [Josh Bowling]
|
|
10
|
+
|
|
7
11
|
## 7.20.21 - 2022-11-17
|
|
8
12
|
|
|
9
13
|
* Update dependency husky to 8.0.2 [Renovate Bot]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@balena/abstract-sql-compiler",
|
|
3
|
-
"version": "7.20.
|
|
3
|
+
"version": "7.20.22",
|
|
4
4
|
"description": "A translator for abstract sql into sql.",
|
|
5
5
|
"main": "out/AbstractSQLCompiler.js",
|
|
6
6
|
"types": "out/AbstractSQLCompiler.d.ts",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"test": "mocha",
|
|
10
10
|
"posttest": "npm run lint",
|
|
11
11
|
"prepublish": "require-npm4-to-publish",
|
|
12
|
-
"prepare": "tsc --project ./tsconfig.build.json",
|
|
12
|
+
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"; tsc --project ./tsconfig.build.json",
|
|
13
13
|
"lint-fix": "balena-lint --fix -e js -e ts src/ test/",
|
|
14
14
|
"lint": "balena-lint -e js -e ts src/ test/ && tsc --noEmit && tsc --noEmit --project tsconfig.js.json"
|
|
15
15
|
},
|
|
@@ -39,11 +39,6 @@
|
|
|
39
39
|
"ts-node": "^10.9.1",
|
|
40
40
|
"typescript": "^4.9.3"
|
|
41
41
|
},
|
|
42
|
-
"husky": {
|
|
43
|
-
"hooks": {
|
|
44
|
-
"pre-commit": "lint-staged"
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
42
|
"lint-staged": {
|
|
48
43
|
"*.js": [
|
|
49
44
|
"balena-lint --fix"
|
|
@@ -63,6 +58,6 @@
|
|
|
63
58
|
]
|
|
64
59
|
},
|
|
65
60
|
"versionist": {
|
|
66
|
-
"publishedAt": "2022-11-
|
|
61
|
+
"publishedAt": "2022-11-18T00:56:20.853Z"
|
|
67
62
|
}
|
|
68
63
|
}
|