@pipelab/test-utils 1.0.0-beta.1 → 1.0.0-beta.11

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/.oxfmtrc.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "ignorePatterns": ["dist", "out", "node_modules", "bin"]
3
+ }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,78 @@
1
1
  # @pipelab/test-utils
2
2
 
3
+ ## 1.0.0-beta.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @pipelab/plugin-core@1.0.0-beta.11
9
+
10
+ ## 1.0.0-beta.10
11
+
12
+ ### Patch Changes
13
+
14
+ - fixes
15
+ - Updated dependencies
16
+ - @pipelab/plugin-core@1.0.0-beta.10
17
+
18
+ ## 1.0.0-beta.9
19
+
20
+ ### Patch Changes
21
+
22
+ - @pipelab/plugin-core@1.0.0-beta.9
23
+
24
+ ## 1.0.0-beta.8
25
+
26
+ ### Patch Changes
27
+
28
+ - @pipelab/plugin-core@1.0.0-beta.8
29
+
30
+ ## 1.0.0-beta.7
31
+
32
+ ### Patch Changes
33
+
34
+ - bump
35
+ - Updated dependencies
36
+ - @pipelab/plugin-core@1.0.0-beta.7
37
+
38
+ ## 1.0.0-beta.6
39
+
40
+ ### Patch Changes
41
+
42
+ - beta tag
43
+ - Updated dependencies
44
+ - @pipelab/plugin-core@1.0.0-beta.6
45
+
46
+ ## 1.0.0-beta.5
47
+
48
+ ### Patch Changes
49
+
50
+ - bump
51
+ - Updated dependencies
52
+ - @pipelab/plugin-core@1.0.0-beta.5
53
+
54
+ ## 1.0.0-beta.4
55
+
56
+ ### Patch Changes
57
+
58
+ - @pipelab/plugin-core@1.0.0-beta.4
59
+
60
+ ## 1.0.0-beta.3
61
+
62
+ ### Patch Changes
63
+
64
+ - update
65
+ - Updated dependencies
66
+ - @pipelab/plugin-core@1.0.0-beta.3
67
+
68
+ ## 1.0.0-beta.2
69
+
70
+ ### Patch Changes
71
+
72
+ - general improvements
73
+ - Updated dependencies
74
+ - @pipelab/plugin-core@1.0.0-beta.2
75
+
3
76
  ## 1.0.0-beta.1
4
77
 
5
78
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelab/test-utils",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.11",
4
4
  "private": false,
5
5
  "description": "Testing utilities for Pipelab plugins and monorepo",
6
6
  "license": "FSL-1.1-MIT",
@@ -27,13 +27,13 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "execa": "9.5.1",
30
- "@pipelab/plugin-core": "1.0.0-beta.1"
30
+ "@pipelab/plugin-core": "1.0.0-beta.11"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "24.12.2",
34
34
  "tsdown": "0.21.2",
35
35
  "typescript": "^5.0.0",
36
- "@pipelab/tsconfig": "1.0.0-beta.0"
36
+ "@pipelab/tsconfig": "1.0.0-beta.6"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "tsdown",
package/src/index.ts CHANGED
@@ -3,7 +3,12 @@ import { fileURLToPath } from "node:url";
3
3
  import { mkdir, writeFile, chmod, rm } from "node:fs/promises";
4
4
  import { existsSync as existsSyncSync } from "node:fs";
5
5
  import { tmpdir } from "node:os";
6
- import { type ActionRunner, type ActionRunnerData, type Action, PipelabContext } from "@pipelab/plugin-core";
6
+ import {
7
+ type ActionRunner,
8
+ type ActionRunnerData,
9
+ type Action,
10
+ PipelabContext,
11
+ } from "@pipelab/plugin-core";
7
12
  import { execa } from "execa";
8
13
 
9
14
  const __filename = fileURLToPath(import.meta.url);