mirror of
https://github.com/deployphp/action.git
synced 2025-06-29 12:44:14 +00:00
Update deps
This commit is contained in:
parent
eed58e3496
commit
363bb1be96
126 changed files with 5743 additions and 2737 deletions
10
node_modules/zx/build/core.d.ts
generated
vendored
10
node_modules/zx/build/core.d.ts
generated
vendored
|
@ -8,9 +8,9 @@ import { Readable, Writable } from 'node:stream';
|
|||
import { inspect } from 'node:util';
|
||||
import { RequestInfo, RequestInit } from 'node-fetch';
|
||||
import { Duration, noop, quote } from './util.js';
|
||||
export declare type Shell = (pieces: TemplateStringsArray, ...args: any[]) => ProcessPromise;
|
||||
export type Shell = (pieces: TemplateStringsArray, ...args: any[]) => ProcessPromise;
|
||||
declare const processCwd: unique symbol;
|
||||
export declare type Options = {
|
||||
export type Options = {
|
||||
[processCwd]: string;
|
||||
cwd?: string;
|
||||
verbose: boolean;
|
||||
|
@ -23,8 +23,8 @@ export declare type Options = {
|
|||
};
|
||||
export declare const defaults: Options;
|
||||
export declare const $: Shell & Options;
|
||||
declare type Resolve = (out: ProcessOutput) => void;
|
||||
declare type IO = StdioPipe | StdioNull;
|
||||
type Resolve = (out: ProcessOutput) => void;
|
||||
type IO = StdioPipe | StdioNull;
|
||||
export declare class ProcessPromise extends Promise<ProcessOutput> {
|
||||
child?: ChildProcess;
|
||||
private _command;
|
||||
|
@ -75,7 +75,7 @@ export declare class ProcessOutput extends Error {
|
|||
}
|
||||
export declare function within<R>(callback: () => R): R;
|
||||
export declare function cd(dir: string): void;
|
||||
export declare type LogEntry = {
|
||||
export type LogEntry = {
|
||||
kind: 'cmd';
|
||||
verbose: boolean;
|
||||
cmd: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue