@pipelab/test-utils 1.0.0-beta.0 → 1.0.0-beta.10

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,77 @@
1
1
  # @pipelab/test-utils
2
2
 
3
+ ## 1.0.0-beta.10
4
+
5
+ ### Patch Changes
6
+
7
+ - fixes
8
+ - Updated dependencies
9
+ - @pipelab/plugin-core@1.0.0-beta.10
10
+
11
+ ## 1.0.0-beta.9
12
+
13
+ ### Patch Changes
14
+
15
+ - @pipelab/plugin-core@1.0.0-beta.9
16
+
17
+ ## 1.0.0-beta.8
18
+
19
+ ### Patch Changes
20
+
21
+ - @pipelab/plugin-core@1.0.0-beta.8
22
+
23
+ ## 1.0.0-beta.7
24
+
25
+ ### Patch Changes
26
+
27
+ - bump
28
+ - Updated dependencies
29
+ - @pipelab/plugin-core@1.0.0-beta.7
30
+
31
+ ## 1.0.0-beta.6
32
+
33
+ ### Patch Changes
34
+
35
+ - beta tag
36
+ - Updated dependencies
37
+ - @pipelab/plugin-core@1.0.0-beta.6
38
+
39
+ ## 1.0.0-beta.5
40
+
41
+ ### Patch Changes
42
+
43
+ - bump
44
+ - Updated dependencies
45
+ - @pipelab/plugin-core@1.0.0-beta.5
46
+
47
+ ## 1.0.0-beta.4
48
+
49
+ ### Patch Changes
50
+
51
+ - @pipelab/plugin-core@1.0.0-beta.4
52
+
53
+ ## 1.0.0-beta.3
54
+
55
+ ### Patch Changes
56
+
57
+ - update
58
+ - Updated dependencies
59
+ - @pipelab/plugin-core@1.0.0-beta.3
60
+
61
+ ## 1.0.0-beta.2
62
+
63
+ ### Patch Changes
64
+
65
+ - general improvements
66
+ - Updated dependencies
67
+ - @pipelab/plugin-core@1.0.0-beta.2
68
+
69
+ ## 1.0.0-beta.1
70
+
71
+ ### Patch Changes
72
+
73
+ - @pipelab/plugin-core@1.0.0-beta.1
74
+
3
75
  ## 1.0.0-beta.0
4
76
 
5
77
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelab/test-utils",
3
- "version": "1.0.0-beta.0",
3
+ "version": "1.0.0-beta.10",
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.0"
30
+ "@pipelab/plugin-core": "1.0.0-beta.10"
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);