From 50a79584cb12129b3db1ef3e0eb9d0c8b9f20b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 30 May 2019 14:59:30 +0200 Subject: chore: Implement strict mode (denoland/deno_std#453) Original: https://github.com/denoland/deno_std/commit/be24677d15494e83eea2e99bfc5ccfdde31cb892 --- prettier/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prettier/util.ts') diff --git a/prettier/util.ts b/prettier/util.ts index 1c5513c8d..b8f79005d 100644 --- a/prettier/util.ts +++ b/prettier/util.ts @@ -2,7 +2,7 @@ const { build, run } = Deno; // Runs a command in cross-platform way -export function xrun(opts): Deno.Process { +export function xrun(opts: Deno.RunOptions): Deno.Process { return run({ ...opts, args: build.os === "win" ? ["cmd.exe", "/c", ...opts.args] : opts.args -- cgit v1.2.3