@balena/sbvr-types 7.0.7 → 7.0.8

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 CHANGED
@@ -1,4 +1,2 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
1
 
4
2
  npx --no lint-staged
@@ -1,3 +1,22 @@
1
+ - commits:
2
+ - subject: Update prepare script for husky v9
3
+ hash: 72d7dac84880aa8604345a6fee74ec3eacbe1176
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Josh Bowling
9
+ - subject: Update dependency husky to v9
10
+ hash: 3a3e4f4e2ae95b5691cb31a1448854318e5b8cc5
11
+ body: |
12
+ Update husky from 8.0.3 to 9.0.11
13
+ footer:
14
+ Change-type: patch
15
+ change-type: patch
16
+ author: Self-hosted Renovate Bot
17
+ version: 7.0.8
18
+ title: ""
19
+ date: 2024-04-09T01:17:11.120Z
1
20
  - commits:
2
21
  - subject: Update dependency @balena/lint to v8
3
22
  hash: 58e3db3861e13d463a5535b60d533280de70c4c1
@@ -9,7 +28,7 @@
9
28
  author: Self-hosted Renovate Bot
10
29
  version: 7.0.7
11
30
  title: ""
12
- date: 2024-03-21T15:47:26.036Z
31
+ date: 2024-04-09T01:07:54.165Z
13
32
  - commits:
14
33
  - subject: Improve JSON typings
15
34
  hash: 487000677cbc9decdcc0029b24f7c6de81216b57
package/CHANGELOG.md CHANGED
@@ -4,8 +4,14 @@ 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
+ # v7.0.8
8
+ ## (2024-04-09)
9
+
10
+ * Update prepare script for husky v9 [Josh Bowling]
11
+ * Update dependency husky to v9 [Self-hosted Renovate Bot]
12
+
7
13
  # v7.0.7
8
- ## (2024-03-21)
14
+ ## (2024-04-09)
9
15
 
10
16
  * Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
11
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/sbvr-types",
3
- "version": "7.0.7",
3
+ "version": "7.0.8",
4
4
  "description": "SBVR type definitions.",
5
5
  "main": "out",
6
6
  "scripts": {
@@ -9,7 +9,7 @@
9
9
  "pretest": "npm run prepare",
10
10
  "test": "mocha",
11
11
  "posttest": "npm run lint",
12
- "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\" && tsc"
12
+ "prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && tsc"
13
13
  },
14
14
  "repository": "https://github.com/balena-io-modules/sbvr-types.git",
15
15
  "author": "",
@@ -29,7 +29,7 @@
29
29
  "@types/sha.js": "^2.4.4",
30
30
  "chai": "^4.4.1",
31
31
  "chai-datetime": "^1.8.0",
32
- "husky": "^8.0.3",
32
+ "husky": "^9.0.0",
33
33
  "lint-staged": "^15.2.2",
34
34
  "mocha": "^10.3.0",
35
35
  "ts-node": "^10.9.2",
@@ -51,6 +51,6 @@
51
51
  "npm": ">=8.1.0"
52
52
  },
53
53
  "versionist": {
54
- "publishedAt": "2024-03-21T15:47:26.161Z"
54
+ "publishedAt": "2024-04-09T01:17:11.246Z"
55
55
  }
56
56
  }