Skip to content

Commit

Permalink
fix(deno): use actual names for keys instead of inferring (#1891)
Browse files Browse the repository at this point in the history
  • Loading branch information
seivan committed Mar 26, 2021
1 parent b9d6ba3 commit b96ef01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/platform-shims/deno.ts
Expand Up @@ -66,7 +66,7 @@ export default {
notStrictEqual: assertNotEquals,
strictEqual: assertStrictEquals,
},
cliui,
cliui: cliui,
findUp: escalade,
getEnv: (key: string) => {
return env[key];
Expand All @@ -77,8 +77,8 @@ export default {
return 'deno';
},
mainFilename: cwd,
Parser,
path,
Parser: Parser,
path: path,
process: {
argv: () => argv,
cwd: () => cwd,
Expand Down

0 comments on commit b96ef01

Please sign in to comment.