@qui-cli/env 5.0.1 → 5.0.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [5.0.3](https://github.com/battis/qui-cli/compare/env/5.0.2...env/5.0.3) (2026-01-02)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
11
+
12
+ ## [5.0.2](https://github.com/battis/qui-cli/compare/env/5.0.1...env/5.0.2) (2025-12-19)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * increase accuracy of README ([94e2c4c](https://github.com/battis/qui-cli/commit/94e2c4c2f8d146715d19c7f36b6f8f1d0d8980f8))
18
+
5
19
  ## [5.0.1](https://github.com/battis/qui-cli/compare/env/5.0.0...env/5.0.1) (2025-11-08)
6
20
 
7
21
  ## [5.0.0](https://github.com/battis/qui-cli/compare/env/4.1.0...env/5.0.0) (2025-11-07)
package/README.md CHANGED
@@ -61,7 +61,7 @@ Path to desired `.env` file relative to `root`. Defaults to `'.env'`;
61
61
 
62
62
  ## Initialization
63
63
 
64
- `Env` requires no initialization
64
+ `Env` loads the specified `.env` file into `process.env`.
65
65
 
66
66
  ## API
67
67
 
package/dist/Env.d.ts CHANGED
@@ -1,8 +1,18 @@
1
1
  import * as Plugin from '@qui-cli/plugin';
2
2
  import dotenv from 'dotenv';
3
3
  export type Configuration = Plugin.Configuration & {
4
+ /**
5
+ * Optional root for calculating relative paths to `.env` files. If undefined,
6
+ * falls back to the path defined by
7
+ * [@qui-cli/root](https://www.npmjs.com/package/@qui-cli/root).
8
+ */
4
9
  root?: string;
10
+ /**
11
+ * Whether or not to load the `.env` file into `process.env` immediately.
12
+ * Defaults to `true`.
13
+ */
5
14
  load?: boolean;
15
+ /** Path to desired `.env` file relative to `root`. Defaults to `'.env'`; */
6
16
  path?: string;
7
17
  };
8
18
  export declare const name = "env";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/env",
3
- "version": "5.0.1",
3
+ "version": "5.0.3",
4
4
  "description": "@qui-cli Plugin: Standardized environment configuration",
5
5
  "homepage": "https://github.com/battis/qui-cli/tree/main/packages/env#readme",
6
6
  "repository": {
@@ -22,18 +22,18 @@
22
22
  "dotenv": "^17.2.3"
23
23
  },
24
24
  "devDependencies": {
25
- "@tsconfig/node20": "^20.1.6",
26
- "@types/node": "^24.10.0",
27
- "commit-and-tag-version": "^12.6.0",
25
+ "@tsconfig/node20": "^20.1.8",
26
+ "@types/node": "^24.10.4",
27
+ "commit-and-tag-version": "^12.6.1",
28
28
  "del-cli": "^6.0.0",
29
29
  "npm-run-all": "^4.1.5",
30
30
  "typescript": "^5.9.3",
31
31
  "@qui-cli/plugin": "4.0.0",
32
- "@qui-cli/root": "3.0.4"
32
+ "@qui-cli/root": "3.0.6"
33
33
  },
34
34
  "peerDependencies": {
35
- "@qui-cli/plugin": "4.x",
36
- "@qui-cli/root": "3.x"
35
+ "@qui-cli/plugin": ">=3",
36
+ "@qui-cli/root": ">=3"
37
37
  },
38
38
  "target": "node",
39
39
  "scripts": {