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

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,27 @@
1
1
  # @pipelab/test-utils
2
2
 
3
+ ## 1.0.0-beta.4
4
+
5
+ ### Patch Changes
6
+
7
+ - @pipelab/plugin-core@1.0.0-beta.4
8
+
9
+ ## 1.0.0-beta.3
10
+
11
+ ### Patch Changes
12
+
13
+ - update
14
+ - Updated dependencies
15
+ - @pipelab/plugin-core@1.0.0-beta.3
16
+
17
+ ## 1.0.0-beta.2
18
+
19
+ ### Patch Changes
20
+
21
+ - general improvements
22
+ - Updated dependencies
23
+ - @pipelab/plugin-core@1.0.0-beta.2
24
+
3
25
  ## 1.0.0-beta.1
4
26
 
5
27
  ### 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.4",
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.4"
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.2"
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);