hereby 1.11.0 → 1.11.1
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/dist/cli/index.js +1 -1
- package/package.json +14 -13
package/dist/cli/index.js
CHANGED
|
@@ -16,7 +16,7 @@ export async function main(d) {
|
|
|
16
16
|
if (e instanceof UserError) {
|
|
17
17
|
d.error(`${pc.red("Error")}: ${e.message}`);
|
|
18
18
|
}
|
|
19
|
-
else if (types.isNativeError(e) && e.stack) {
|
|
19
|
+
else if (types.isNativeError(e) && e.stack) { // eslint-disable-line @typescript-eslint/no-deprecated
|
|
20
20
|
d.error(e.stack);
|
|
21
21
|
}
|
|
22
22
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hereby",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "A simple task runner",
|
|
5
5
|
"repository": "github:jakebailey/hereby",
|
|
6
6
|
"type": "module",
|
|
@@ -47,30 +47,30 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@ava/typescript": "^3.0.1",
|
|
50
|
-
"@changesets/cli": "^2.29.
|
|
50
|
+
"@changesets/cli": "^2.29.7",
|
|
51
51
|
"@codspeed/tinybench-plugin": "^4.0.1",
|
|
52
52
|
"@fast-check/ava": "2.0.1",
|
|
53
|
-
"@tsconfig/node12": "^12.1.
|
|
53
|
+
"@tsconfig/node12": "^12.1.5",
|
|
54
54
|
"@types/command-line-usage": "^5.0.4",
|
|
55
55
|
"@types/minimist": "^1.2.5",
|
|
56
|
-
"@types/node": "^
|
|
56
|
+
"@types/node": "^24.7.2",
|
|
57
57
|
"@types/tmp": "^0.2.6",
|
|
58
58
|
"ava": "~5.0.1",
|
|
59
59
|
"c8": "^10.1.3",
|
|
60
|
-
"dprint": "^0.
|
|
61
|
-
"eslint": "^9.
|
|
62
|
-
"eslint-plugin-ava": "^15.0
|
|
60
|
+
"dprint": "^0.50.2",
|
|
61
|
+
"eslint": "^9.37.0",
|
|
62
|
+
"eslint-plugin-ava": "^15.1.0",
|
|
63
63
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
64
|
-
"eslint-plugin-unicorn": "^
|
|
64
|
+
"eslint-plugin-unicorn": "^61.0.2",
|
|
65
65
|
"execa": "^6.1.0",
|
|
66
|
-
"globals": "^16.
|
|
67
|
-
"monocart-coverage-reports": "^2.12.
|
|
66
|
+
"globals": "^16.4.0",
|
|
67
|
+
"monocart-coverage-reports": "^2.12.9",
|
|
68
68
|
"moq.ts": "^10.1.0",
|
|
69
69
|
"rimraf": "^5.0.10",
|
|
70
70
|
"tinybench": "~2.8.0",
|
|
71
71
|
"tmp": "0.2.1",
|
|
72
|
-
"typescript": "^5.
|
|
73
|
-
"typescript-eslint": "^8.
|
|
72
|
+
"typescript": "^5.9.3",
|
|
73
|
+
"typescript-eslint": "^8.46.0"
|
|
74
74
|
},
|
|
75
75
|
"overrides": {
|
|
76
76
|
"ava": {
|
|
@@ -84,7 +84,8 @@
|
|
|
84
84
|
"watch": "tsc --watch",
|
|
85
85
|
"test": "ava",
|
|
86
86
|
"coverage": "c8 --experimental-monocart ava",
|
|
87
|
-
"prepack": "rimraf dist && npm run build"
|
|
87
|
+
"prepack": "rimraf dist && npm run build",
|
|
88
|
+
"version": "changeset version && npm install"
|
|
88
89
|
},
|
|
89
90
|
"ava": {
|
|
90
91
|
"files": [
|