@balena/abstract-sql-to-typescript 1.2.4 → 1.2.5
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: 85479e4e5fd052fbdaee8ba323038f4ed5b8df89
|
|
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: 1.2.5
|
|
13
|
+
title: ""
|
|
14
|
+
date: 2022-11-18T01:31:50.428Z
|
|
1
15
|
- commits:
|
|
2
16
|
- subject: Update dependency mocha to 10.1.0
|
|
3
17
|
hash: 6e489e61c48227e209ba112c42e89ac927d8caf9
|
|
@@ -12,7 +26,7 @@
|
|
|
12
26
|
nested: []
|
|
13
27
|
version: 1.2.4
|
|
14
28
|
title: ""
|
|
15
|
-
date: 2022-11-
|
|
29
|
+
date: 2022-11-17T19:04:01.910Z
|
|
16
30
|
- commits:
|
|
17
31
|
- subject: Update dependency lint-staged to 13.0.3
|
|
18
32
|
hash: 6efeaac395f06a91959ecfe8f087ee347c2e825a
|
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
|
+
## 1.2.5 - 2022-11-18
|
|
8
|
+
|
|
9
|
+
* Dev: Migrate husky setup for v8 [Josh Bowling]
|
|
10
|
+
|
|
7
11
|
## 1.2.4 - 2022-11-17
|
|
8
12
|
|
|
9
13
|
* Update dependency mocha to 10.1.0 [Renovate Bot]
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@balena/abstract-sql-to-typescript",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
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": "tsc --project ./tsconfig.build.json",
|
|
10
|
+
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"; tsc --project ./tsconfig.build.json",
|
|
11
11
|
"lint": "balena-lint --typescript --fix src test && tsc --noEmit"
|
|
12
12
|
},
|
|
13
13
|
"repository": "https://github.com/balena-io-modules/abstract-sql-to-typescript.git",
|
|
@@ -30,11 +30,6 @@
|
|
|
30
30
|
"ts-node": "^10.7.0",
|
|
31
31
|
"typescript": "^4.6.3"
|
|
32
32
|
},
|
|
33
|
-
"husky": {
|
|
34
|
-
"hooks": {
|
|
35
|
-
"pre-commit": "lint-staged"
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
33
|
"lint-staged": {
|
|
39
34
|
"*.ts": [
|
|
40
35
|
"balena-lint --typescript --fix"
|
|
@@ -45,6 +40,6 @@
|
|
|
45
40
|
"_": "test/**/*.ts"
|
|
46
41
|
},
|
|
47
42
|
"versionist": {
|
|
48
|
-
"publishedAt": "2022-11-
|
|
43
|
+
"publishedAt": "2022-11-18T01:31:50.573Z"
|
|
49
44
|
}
|
|
50
45
|
}
|