Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
fix: make scoped package scopes friendlier
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 7, 2018
1 parent 00a58b3 commit 43cc3d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Expand Up @@ -259,7 +259,7 @@ export class Config implements IConfig {

scopedEnvVarKey(k: string) {
return [this.bin, k]
.map(p => p.replace(/-/g, '_'))
.map(p => p.replace(/@/g, '').replace(/[-\/]/g, '_'))
.join('_')
.toUpperCase()
}
Expand Down

0 comments on commit 43cc3d9

Please sign in to comment.