Skip to content

Commit e0aacce

Browse files
committed
feat: pass origin error as ProcessOuput cause
1 parent b571839 commit e0aacce

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.size-limit.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "zx/core",
44
"path": ["build/core.cjs", "build/util.cjs", "build/vendor-core.cjs"],
5-
"limit": "77.5 kB",
5+
"limit": "77.6 kB",
66
"brotli": false,
77
"gzip": false
88
},
@@ -30,7 +30,7 @@
3030
{
3131
"name": "all",
3232
"path": "build/*",
33-
"limit": "850 kB",
33+
"limit": "850.2 kB",
3434
"brotli": false,
3535
"gzip": false
3636
}

src/core.ts

+3
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,7 @@ type ProcessDto = {
675675

676676
export class ProcessOutput extends Error {
677677
private readonly _dto: ProcessDto
678+
cause: Error | null
678679
constructor(dto: ProcessDto)
679680
constructor(
680681
code: number | null,
@@ -703,7 +704,9 @@ export class ProcessOutput extends Error {
703704
? code
704705
: { code, signal, duration, error, from, store }
705706

707+
this.cause = error
706708
Object.defineProperties(this, {
709+
cause: { value: dto.error, enumerable: false, writable: true, configurable: true },
707710
stdout: { get: once(() => bufArrJoin(dto.store.stdout)) },
708711
stderr: { get: once(() => bufArrJoin(dto.store.stderr)) },
709712
stdall: { get: once(() => bufArrJoin(dto.store.stdall)) },

src/goods.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export async function spinner<T>(
194194
title: string | (() => T),
195195
callback?: () => T
196196
): Promise<T> {
197-
if (typeof title == 'function') {
197+
if (typeof title === 'function') {
198198
callback = title
199199
title = ''
200200
}

test/core.test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -253,15 +253,17 @@ describe('core', () => {
253253
assert.equal(o1.exitCode, 1)
254254
assert.match(o1.message, /exit code: 1/)
255255

256+
const err = new Error('BrokenSpawn')
256257
const o2 = await $({
257258
nothrow: true,
258259
spawn() {
259-
throw new Error('BrokenSpawn')
260+
throw err
260261
},
261262
})`echo foo`
262263
assert.equal(o2.ok, false)
263264
assert.equal(o2.exitCode, null)
264265
assert.match(o2.message, /BrokenSpawn/)
266+
assert.equal(o2.cause, err)
265267
})
266268

267269
test('handles `input` option', async () => {

0 commit comments

Comments
 (0)