From 52c1b6b61593a574d2a2c934807c9617d85330f7 Mon Sep 17 00:00:00 2001 From: Adam Evans Date: Mon, 27 Feb 2023 14:38:24 +1100 Subject: [PATCH] Align Deno yargs_parser version with package.json version. Refs https://github.com/yargs/yargs/issues/2136 and https://github.com/yargs/yargs/pull/2231/files where it looks like the Deno shim got missed in the version bump. This should allow `.env()` to work in Deno resolving the original --- lib/platform-shims/deno.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/platform-shims/deno.ts b/lib/platform-shims/deno.ts index 071a16258..3b7c3ac98 100644 --- a/lib/platform-shims/deno.ts +++ b/lib/platform-shims/deno.ts @@ -13,7 +13,7 @@ import { import cliui from 'https://deno.land/x/cliui@v7.0.4-deno/deno.ts'; import escalade from 'https://deno.land/x/escalade@v3.0.3/sync.ts'; -import Parser from 'https://deno.land/x/yargs_parser@v20.2.4-deno/deno.ts'; +import Parser from 'https://deno.land/x/yargs_parser@v21.1.1-deno/deno.ts'; import y18n from 'https://deno.land/x/y18n@v5.0.0-deno/deno.ts'; import {YError} from '../../build/lib/yerror.js';