@balena/env-parsing 1.1.1 → 1.1.2

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.
@@ -1,3 +1,15 @@
1
+ - commits:
2
+ - subject: Update prepare script for husky install
3
+ hash: cec17710782294f6c88b53f589ed772806fc79c1
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Josh Bowling
9
+ nested: []
10
+ version: 1.1.2
11
+ title: ""
12
+ date: 2022-12-28T07:31:25.462Z
1
13
  - commits:
2
14
  - subject: "CI: Use flowzone"
3
15
  hash: f194a20e06b52fbe8b0f34359e01f29e97cc49af
@@ -9,7 +21,7 @@
9
21
  nested: []
10
22
  version: 1.1.1
11
23
  title: ""
12
- date: 2022-12-28T07:20:04.684Z
24
+ date: 2022-12-28T07:23:37.833Z
13
25
  - version: 1.1.0
14
26
  date: 2022-08-15T15:37:22Z
15
27
  commits:
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.1.2 - 2022-12-28
8
+
9
+ * Update prepare script for husky install [Josh Bowling]
10
+
7
11
  ## 1.1.1 - 2022-12-28
8
12
 
9
13
  * CI: Use flowzone [Josh Bowling]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/env-parsing",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A collection of utilities to simplify/standardize env var parsing",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "lint-fix": "balena-lint --typescript --fix src test",
12
12
  "test": "mocha && tsc --noEmit && tsc --noEmit --project ./tsconfig.dev.json && npm run lint",
13
13
  "prepack": "npm run build",
14
- "prepare": "husky install"
14
+ "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\""
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
@@ -51,6 +51,6 @@
51
51
  ]
52
52
  },
53
53
  "versionist": {
54
- "publishedAt": "2022-12-28T07:20:04.814Z"
54
+ "publishedAt": "2022-12-28T07:31:25.521Z"
55
55
  }
56
56
  }