@markjaquith/agency 1.5.2 → 1.5.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/package.json +7 -7
- package/src/utils/process.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markjaquith/agency",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "Manages personal agents files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Mark Jaquith",
|
|
@@ -45,21 +45,21 @@
|
|
|
45
45
|
"personal-agents"
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@types/bun": "
|
|
49
|
-
"knip": "^5.
|
|
50
|
-
"prettier": "^3.
|
|
48
|
+
"@types/bun": "^1.3.6",
|
|
49
|
+
"knip": "^5.82.1",
|
|
50
|
+
"prettier": "^3.8.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"typescript": "^5"
|
|
53
|
+
"typescript": "^5.9.3"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"bun": ">=1.0.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@effect/schema": "^0.75.5",
|
|
60
|
-
"effect": "^3.19.
|
|
60
|
+
"effect": "^3.19.15",
|
|
61
61
|
"jsonc-parser": "^3.3.1",
|
|
62
|
-
"ora": "^8.
|
|
62
|
+
"ora": "^8.2.0"
|
|
63
63
|
},
|
|
64
64
|
"trustedDependencies": [
|
|
65
65
|
"@triggi/native-exec"
|
package/src/utils/process.ts
CHANGED
|
@@ -23,7 +23,7 @@ interface SpawnOptions {
|
|
|
23
23
|
/**
|
|
24
24
|
* Generic error for process execution failures
|
|
25
25
|
*/
|
|
26
|
-
|
|
26
|
+
class ProcessError extends Data.TaggedError("ProcessError")<{
|
|
27
27
|
command: string
|
|
28
28
|
exitCode: number
|
|
29
29
|
stderr: string
|