@qui-cli/shell 3.0.1 → 3.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
+ ## [3.0.3](https://github.com/battis/qui-cli/compare/shell/3.0.2...shell/3.0.3) (2025-11-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * remove all ambiguity from peer dependencies ([ced3fac](https://github.com/battis/qui-cli/commit/ced3faced1bc340457ca43e3be11afa3933b6d72))
11
+
12
+ ## [3.0.2](https://github.com/battis/qui-cli/compare/shell/3.0.1...shell/3.0.2) (2025-11-08)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * simplify peer versions ([da8823d](https://github.com/battis/qui-cli/commit/da8823d4803cd9a0875a0c6cbb3c1efee03f11dd))
18
+
5
19
  ## [3.0.1](https://github.com/battis/qui-cli/compare/shell/3.0.0...shell/3.0.1) (2025-08-04)
6
20
 
7
21
 
package/dist/Shell.js CHANGED
@@ -15,11 +15,11 @@ export function options() {
15
15
  return {
16
16
  flag: {
17
17
  commands: {
18
- description: `Include shell commands in log (default: ${Colors.value(showCommands)}, ${Colors.value('--no-commands')} to disable)`,
18
+ description: `Include shell commands in log`,
19
19
  default: showCommands
20
20
  },
21
21
  silent: {
22
- description: `Hide command output (default: ${Colors.value(silent)})`,
22
+ description: `Hide command output`,
23
23
  default: silent
24
24
  }
25
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/shell",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "description": "@qui-cli Plugin: Standardized shelljs wrapper",
5
5
  "homepage": "https://github.com/battis/qui-cli/tree/main/packages/shell#readme",
6
6
  "repository": {
@@ -18,24 +18,23 @@
18
18
  "types": "./dist/index.d.ts",
19
19
  "dependencies": {
20
20
  "ora": "^8.2.0",
21
- "shelljs": "^0.10.0"
21
+ "shelljs": "^0.10.0",
22
+ "@qui-cli/colors": "3.1.0"
22
23
  },
23
24
  "devDependencies": {
24
25
  "@tsconfig/node20": "^20.1.6",
25
- "@types/node": "^24.1.0",
26
+ "@types/node": "^24.10.0",
26
27
  "@types/shelljs": "^0.8.17",
27
- "commit-and-tag-version": "^12.5.2",
28
+ "commit-and-tag-version": "^12.6.0",
28
29
  "del-cli": "^6.0.0",
29
30
  "npm-run-all": "^4.1.5",
30
- "typescript": "^5.9.2",
31
- "@qui-cli/log": "3.0.0",
32
- "@qui-cli/colors": "3.0.1",
33
- "@qui-cli/plugin": "3.0.0"
31
+ "typescript": "^5.9.3",
32
+ "@qui-cli/plugin": "4.0.0",
33
+ "@qui-cli/log": "4.0.0"
34
34
  },
35
35
  "peerDependencies": {
36
- "@qui-cli/colors": "3.x",
37
- "@qui-cli/log": "3.x",
38
- "@qui-cli/plugin": "3.x"
36
+ "@qui-cli/log": "4.x",
37
+ "@qui-cli/plugin": "4.x"
39
38
  },
40
39
  "target": "node",
41
40
  "scripts": {