@pipelab/test-utils 1.0.0-beta.12 → 1.0.0-beta.14

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 CHANGED
@@ -1,3 +1,9 @@
1
1
  {
2
- "ignorePatterns": ["dist", "out", "node_modules", "bin"]
2
+ "ignorePatterns": [
3
+ "dist",
4
+ "out",
5
+ "node_modules",
6
+ "bin",
7
+ "**/*.d.ts"
8
+ ]
3
9
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @pipelab/test-utils
2
2
 
3
+ ## 1.0.0-beta.14
4
+
5
+ ### Patch Changes
6
+
7
+ - fg
8
+ - Updated dependencies
9
+ - @pipelab/plugin-core@1.0.0-beta.14
10
+
11
+ ## 1.0.0-beta.13
12
+
13
+ ### Patch Changes
14
+
15
+ - changes
16
+ - Updated dependencies
17
+ - @pipelab/plugin-core@1.0.0-beta.13
18
+
3
19
  ## 1.0.0-beta.12
4
20
 
5
21
  ### Patch Changes
package/dist/index.mjs CHANGED
@@ -85,7 +85,8 @@ const runAction = async (runner, options) => {
85
85
  const outputs = {};
86
86
  const pnpmShimPath = join(options.sandboxPath, "pnpm-shim.cjs");
87
87
  await writeFile(pnpmShimPath, `const { spawnSync } = require('child_process');
88
- spawnSync('pnpm', process.argv.slice(2), { stdio: 'inherit', shell: true });`);
88
+ const result = spawnSync('pnpm', process.argv.slice(2), { stdio: 'inherit', shell: true });
89
+ process.exit(result.status ?? 0);`);
89
90
  const context = {
90
91
  inputs: options.inputs,
91
92
  log: (...args) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelab/test-utils",
3
- "version": "1.0.0-beta.12",
3
+ "version": "1.0.0-beta.14",
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.12"
30
+ "@pipelab/plugin-core": "1.0.0-beta.14"
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.7"
36
+ "@pipelab/tsconfig": "1.0.0-beta.9"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "tsdown",
package/src/index.ts CHANGED
@@ -142,7 +142,8 @@ export const runAction = async <A extends Action>(
142
142
  await writeFile(
143
143
  pnpmShimPath,
144
144
  `const { spawnSync } = require('child_process');
145
- spawnSync('pnpm', process.argv.slice(2), { stdio: 'inherit', shell: true });`,
145
+ const result = spawnSync('pnpm', process.argv.slice(2), { stdio: 'inherit', shell: true });
146
+ process.exit(result.status ?? 0);`,
146
147
  );
147
148
 
148
149
  const context: ActionRunnerData<A> = {