From 658b5596577a9349e1c8e66885491c9c36a6bc73 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Mon, 15 Jan 2024 08:25:23 +1100 Subject: chore: define removal version for `Deno.run()` (#21863) This change sets the removal for `Deno.run()` in v2. --- cli/tsc/dts/lib.deno.ns.d.ts | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'cli/tsc/dts') diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 3cc6d6a4f..b0b4624b2 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -3933,10 +3933,11 @@ declare namespace Deno { ): FsWatcher; /** - * @deprecated Use {@linkcode Deno.Command} instead. - * * Options which can be used with {@linkcode Deno.run}. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @category Sub Process */ export interface RunOptions { /** Arguments to pass. @@ -3994,14 +3995,15 @@ declare namespace Deno { } /** - * @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 * `false`, the sub-process exit code will be set in `code`. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @category Sub Process */ export type ProcessStatus = | { @@ -4016,11 +4018,12 @@ 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. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @category Sub Process */ export class Process { /** The resource ID of the sub-process. */ @@ -4175,8 +4178,6 @@ declare namespace Deno { ): void; /** - * @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. * @@ -4222,6 +4223,9 @@ declare namespace Deno { * * Requires `allow-run` permission. * + * @deprecated Use {@linkcode Deno.Command} instead. {@linkcode Deno.run} + * will be removed in v2.0.0. + * * @tags allow-run * @category Sub Process */ -- cgit v1.2.3