hereby 1.8.1 → 1.8.5

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.
Files changed (2) hide show
  1. package/dist/cli/index.d.ts +5 -0
  2. package/package.json +18 -18
@@ -0,0 +1,5 @@
1
+ import type { Task } from "../index.js";
2
+ import { type Herebyfile } from "./loadHerebyfile.js";
3
+ import { type D } from "./utils.js";
4
+ export declare function main(d: D): Promise<void>;
5
+ export declare function selectTasks(d: Pick<D, "simplifyPath">, herebyfile: Herebyfile, herebyfilePath: string, taskNames: string[]): Promise<Task[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hereby",
3
- "version": "1.8.1",
3
+ "version": "1.8.5",
4
4
  "description": "A simple task runner",
5
5
  "repository": "github:jakebailey/hereby",
6
6
  "type": "module",
@@ -40,44 +40,41 @@
40
40
  "dependencies": {
41
41
  "command-line-usage": "^6.1.3",
42
42
  "fastest-levenshtein": "^1.0.16",
43
- "import-meta-resolve": "^2.2.1",
43
+ "import-meta-resolve": "^2.2.2",
44
44
  "minimist": "^1.2.8",
45
45
  "picocolors": "^1.0.0",
46
46
  "pretty-ms": "^8.0.0"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@ava/typescript": "^3.0.1",
50
- "@tsconfig/node12": "^1.0.11",
50
+ "@tsconfig/node12": "^12.1.0",
51
51
  "@types/command-line-usage": "^5.0.2",
52
52
  "@types/minimist": "^1.2.2",
53
- "@types/node": "^14.18.37",
53
+ "@types/node": "^14.18.54",
54
54
  "@types/tmp": "^0.2.3",
55
- "@typescript-eslint/eslint-plugin": "^5.54.0",
56
- "@typescript-eslint/parser": "^5.54.0",
55
+ "@typescript-eslint/eslint-plugin": "^6.2.1",
56
+ "@typescript-eslint/parser": "^6.2.1",
57
57
  "ava": "~5.0.1",
58
- "c8": "^7.13.0",
59
- "dprint": "^0.34.5",
60
- "eslint": "^8.35.0",
58
+ "c8": "^8.0.1",
59
+ "dprint": "^0.40.2",
60
+ "eslint": "^8.46.0",
61
61
  "eslint-plugin-ava": "^14.0.0",
62
62
  "eslint-plugin-simple-import-sort": "^10.0.0",
63
- "eslint-plugin-unicorn": "^45.0.2",
63
+ "eslint-plugin-unicorn": "^48.0.1",
64
64
  "execa": "^6.1.0",
65
- "moq.ts": "^9.0.2",
66
- "rimraf": "^4.1.3",
65
+ "moq.ts": "^10.0.6",
66
+ "rimraf": "^5.0.1",
67
67
  "tmp": "^0.2.1",
68
- "typescript": "~4.9.5"
68
+ "typescript": "^5.1.6"
69
69
  },
70
70
  "overrides": {
71
71
  "ava": {
72
72
  "emittery": "1.0.0"
73
73
  }
74
74
  },
75
- "packageManager": "npm@8.17.0",
76
- "volta": {
77
- "node": "14.20.0",
78
- "npm": "8.17.0"
79
- },
75
+ "packageManager": "npm@8.19.4",
80
76
  "scripts": {
77
+ "ci": "npm ci",
81
78
  "build": "tsc",
82
79
  "watch": "tsc --watch",
83
80
  "test": "ava",
@@ -105,6 +102,9 @@
105
102
  ]
106
103
  },
107
104
  "release-it": {
105
+ "npm": {
106
+ "publish": false
107
+ },
108
108
  "git": {
109
109
  "commitMessage": "Release v${version}",
110
110
  "tagName": "v${version}"