1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

feat: Deprecate Deno.run API in favor of Deno.Command (#17630)

This commit is contained in:
Bartek Iwańczuk 2023-02-16 12:11:32 +01:00 committed by GitHub
parent e215656865
commit 848e2c0d57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3688,7 +3688,10 @@ declare namespace Deno {
options?: { recursive: boolean },
): FsWatcher;
/** Options which can be used with {@linkcode Deno.run}.
/**
* @deprecated Use {@linkcode Deno.Command} instead.
*
* Options which can be used with {@linkcode Deno.run}.
*
* @category Sub Process */
export interface RunOptions {
@ -3746,7 +3749,10 @@ declare namespace Deno {
stdin?: "inherit" | "piped" | "null" | number;
}
/** The status resolved from the `.status()` method of a
/**
* @deprecated Use {@linkcode Deno.Command} instead.
*
* The status resolved from the `.status()` method of a
* {@linkcode Deno.Process} instance.
*
* If `success` is `true`, then `code` will be `0`, but if `success` is
@ -3766,6 +3772,8 @@ declare namespace Deno {
};
/**
* * @deprecated Use {@linkcode Deno.Command} instead.
*
* Represents an instance of a sub process that is returned from
* {@linkcode Deno.run} which can be used to manage the sub-process.
*
@ -3922,7 +3930,10 @@ declare namespace Deno {
handler: () => void,
): void;
/** Spawns new subprocess. RunOptions must contain at a minimum the `opt.cmd`,
/**
* @deprecated Use {@linkcode Deno.Command} instead.
*
* Spawns new subprocess. RunOptions must contain at a minimum the `opt.cmd`,
* an array of program arguments, the first of which is the binary.
*
* ```ts