@balena/env-parsing 1.3.1 → 1.3.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 typescript to v6
3
+ hash: c4d2f7cb54d7eca58a2c4780df5b91726eddb301
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: joshbwlng
9
+ nested: []
10
+ version: 1.3.2
11
+ title: ""
12
+ date: 2026-06-11T00:55:48.965Z
1
13
  - commits:
2
14
  - subject: Improve `enumVar` handling
3
15
  hash: 176941315517f44ba6f4515b7e9b78d956c88620
@@ -10,7 +22,7 @@
10
22
  nested: []
11
23
  version: 1.3.1
12
24
  title: ""
13
- date: 2026-06-10T12:13:26.119Z
25
+ date: 2026-06-10T12:34:54.412Z
14
26
  - commits:
15
27
  - subject: Add enumVar
16
28
  hash: a5ac5c25caa1c987b4579c10b68054531dcc4a9a
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.3.2 - 2026-06-11
8
+
9
+ * Update typescript to v6 [joshbwlng]
10
+
7
11
  ## 1.3.1 - 2026-06-10
8
12
 
9
13
  * Improve `enumVar` handling [Pagan Gazzard]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/env-parsing",
3
- "version": "1.3.1",
3
+ "version": "1.3.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",
@@ -33,7 +33,7 @@
33
33
  "mocha": "^11.0.0",
34
34
  "rimraf": "^6.0.0",
35
35
  "ts-node": "^10.9.1",
36
- "typescript": "^5.0.0"
36
+ "typescript": "^6.0.3"
37
37
  },
38
38
  "mocha": {
39
39
  "reporter": "spec",
@@ -47,6 +47,6 @@
47
47
  ]
48
48
  },
49
49
  "versionist": {
50
- "publishedAt": "2026-06-10T12:13:26.177Z"
50
+ "publishedAt": "2026-06-11T00:55:49.042Z"
51
51
  }
52
52
  }
package/tsconfig.dev.json CHANGED
@@ -1,5 +1,9 @@
1
1
  {
2
2
  "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": ".",
5
+ "types": ["node", "mocha"]
6
+ },
3
7
  "include": [
4
8
  "src/**/*.ts",
5
9
  "test/**/*.ts",
package/tsconfig.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "module": "commonjs",
4
+ "rootDir": "./src",
4
5
  "outDir": "build",
5
6
  "noUnusedParameters": true,
6
7
  "noUnusedLocals": true,
@@ -8,7 +9,8 @@
8
9
  "strict": true,
9
10
  "target": "es2019",
10
11
  "declaration": true,
11
- "skipLibCheck": true
12
+ "skipLibCheck": true,
13
+ "types": ["node"]
12
14
  },
13
15
  "include": [
14
16
  "src/**/*.ts"