Skip to content

Commit 34ae5ed

Browse files
committed
chore: remove type cast
1 parent a42ac0f commit 34ae5ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/npm-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const NPM_REGISTRY_URL = 'https://registry.npmjs.org/'
1414

1515
function createNpmEnv(overrides: Record<string, string> = {}): Record<string, string> {
1616
return {
17-
...(process.env as Record<string, string>),
17+
...process.env,
1818
...overrides,
1919
FORCE_COLOR: '0',
2020
npm_config_registry: NPM_REGISTRY_URL,

0 commit comments

Comments
 (0)