hereby 1.9.0 → 1.10.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.
Files changed (2) hide show
  1. package/dist/cli.js +5 -2
  2. package/package.json +14 -8
package/dist/cli.js CHANGED
@@ -1,6 +1,9 @@
1
- import { main } from "./cli/index.js";
2
- import { real } from "./cli/utils.js";
1
+ var _a;
2
+ import module from "node:module";
3
+ (_a = module.enableCompileCache) === null || _a === void 0 ? void 0 : _a.call(module);
3
4
  async function run() {
5
+ const { main } = await import("./cli/index.js");
6
+ const { real } = await import("./cli/utils.js");
4
7
  await main(await real());
5
8
  }
6
9
  void run();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hereby",
3
- "version": "1.9.0",
3
+ "version": "1.10.0",
4
4
  "description": "A simple task runner",
5
5
  "repository": "github:jakebailey/hereby",
6
6
  "type": "module",
@@ -48,26 +48,29 @@
48
48
  "devDependencies": {
49
49
  "@ava/typescript": "^3.0.1",
50
50
  "@changesets/cli": "^2.27.7",
51
+ "@codspeed/tinybench-plugin": "^3.1.1",
52
+ "@fast-check/ava": "^2.0.1",
51
53
  "@tsconfig/node12": "^12.1.3",
52
54
  "@types/command-line-usage": "^5.0.4",
53
55
  "@types/minimist": "^1.2.5",
54
- "@types/node": "^20.14.10",
56
+ "@types/node": "^22.1.0",
55
57
  "@types/tmp": "^0.2.6",
56
- "@typescript-eslint/eslint-plugin": "^7.16.1",
57
- "@typescript-eslint/parser": "^7.16.1",
58
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
59
+ "@typescript-eslint/parser": "^7.18.0",
58
60
  "ava": "~5.0.1",
59
61
  "c8": "^10.1.2",
60
62
  "dprint": "^0.47.2",
61
63
  "eslint": "^8.57.0",
62
64
  "eslint-plugin-ava": "^14.0.0",
63
65
  "eslint-plugin-simple-import-sort": "^12.1.1",
64
- "eslint-plugin-unicorn": "^54.0.0",
66
+ "eslint-plugin-unicorn": "^55.0.0",
65
67
  "execa": "^6.1.0",
66
- "monocart-coverage-reports": "^2.9.2",
68
+ "monocart-coverage-reports": "^2.10.0",
67
69
  "moq.ts": "^10.1.0",
68
- "rimraf": "^5.0.9",
70
+ "rimraf": "^5.0.10",
71
+ "tinybench": "~2.8.0",
69
72
  "tmp": "0.2.1",
70
- "typescript": "^5.5.3"
73
+ "typescript": "^5.5.4"
71
74
  },
72
75
  "overrides": {
73
76
  "ava": {
@@ -84,6 +87,9 @@
84
87
  "prepack": "rimraf dist && npm run build"
85
88
  },
86
89
  "ava": {
90
+ "files": [
91
+ "**/*.test.ts"
92
+ ],
87
93
  "typescript": {
88
94
  "rewritePaths": {
89
95
  "src/": "dist/"