@qui-cli/env 4.0.0 → 4.1.0
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 +14 -0
- package/dist/1Password.js +6 -0
- package/package.json +8 -8
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
|
+
## [4.1.0](https://github.com/battis/qui-cli/compare/env/4.0.1...env/4.1.0) (2025-11-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* standardize on modules labeling the options that they add to the usage man page ([eba86cd](https://github.com/battis/qui-cli/commit/eba86cd8a22a93aa6b6f19a3979272d87fe59274))
|
|
11
|
+
|
|
12
|
+
## [4.0.1](https://github.com/battis/qui-cli/compare/env/4.0.0...env/4.0.1) (2025-08-04)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* update lagging peer dependency specs ([30c0c27](https://github.com/battis/qui-cli/commit/30c0c279d4247a69a30efef8a7426442752cd9c0))
|
|
18
|
+
|
|
5
19
|
## [4.0.0](https://github.com/battis/qui-cli/compare/env/3.1.2...env/4.0.0) (2025-08-02)
|
|
6
20
|
|
|
7
21
|
|
package/dist/1Password.js
CHANGED
|
@@ -26,6 +26,12 @@ export async function configure(config = {}) {
|
|
|
26
26
|
}
|
|
27
27
|
export function options() {
|
|
28
28
|
return {
|
|
29
|
+
man: [
|
|
30
|
+
{
|
|
31
|
+
level: 3,
|
|
32
|
+
text: '1Password integration'
|
|
33
|
+
}
|
|
34
|
+
],
|
|
29
35
|
opt: {
|
|
30
36
|
serviceAccountToken: {
|
|
31
37
|
description: `1Password service account token (defaults to ${OP_SERVICE_ACCOUNT_TOKEN}} environment variable, if present)`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qui-cli/env",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
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": {
|
|
@@ -19,21 +19,21 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@1password/sdk": "^0.3.1",
|
|
21
21
|
"@battis/import-package-json": "^0.1.7",
|
|
22
|
-
"dotenv": "^17.2.
|
|
22
|
+
"dotenv": "^17.2.3"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@tsconfig/node20": "^20.1.6",
|
|
26
|
-
"@types/node": "^24.
|
|
27
|
-
"commit-and-tag-version": "^12.
|
|
26
|
+
"@types/node": "^24.10.0",
|
|
27
|
+
"commit-and-tag-version": "^12.6.0",
|
|
28
28
|
"del-cli": "^6.0.0",
|
|
29
29
|
"npm-run-all": "^4.1.5",
|
|
30
|
-
"typescript": "
|
|
30
|
+
"typescript": "~5.8.3",
|
|
31
31
|
"@qui-cli/plugin": "3.0.0",
|
|
32
|
-
"@qui-cli/root": "3.0.
|
|
32
|
+
"@qui-cli/root": "3.0.1"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@qui-cli/plugin": "
|
|
36
|
-
"@qui-cli/root": "
|
|
35
|
+
"@qui-cli/plugin": "3.x",
|
|
36
|
+
"@qui-cli/root": "3.x"
|
|
37
37
|
},
|
|
38
38
|
"target": "node",
|
|
39
39
|
"scripts": {
|