@@ -131,7 +131,7 @@ function readOptions(
131
131
logger . info ( `Locating potential ${ baseFilename } files:` ) ;
132
132
}
133
133
134
- const options : PackageManagerOptions = { } ;
134
+ let options : PackageManagerOptions = { } ;
135
135
for ( const location of [ ...defaultConfigLocations , ...projectConfigLocations ] ) {
136
136
if ( existsSync ( location ) ) {
137
137
if ( showPotentials ) {
@@ -142,58 +142,84 @@ function readOptions(
142
142
// Normalize RC options that are needed by 'npm-registry-fetch'.
143
143
// See: https://github.com/npm/npm-registry-fetch/blob/ebddbe78a5f67118c1f7af2e02c8a22bcaf9e850/index.js#L99-L126
144
144
const rcConfig : PackageManagerOptions = yarn ? lockfile . parse ( data ) : ini . parse ( data ) ;
145
- for ( const [ key , value ] of Object . entries ( rcConfig ) ) {
146
- let substitutedValue = value ;
147
145
148
- // Substitute any environment variable references.
149
- if ( typeof value === 'string' ) {
150
- substitutedValue = value . replace ( / \$ \{ ( [ ^ \} ] + ) \} / , ( _ , name ) => process . env [ name ] || '' ) ;
151
- }
146
+ options = normalizeOptions ( rcConfig , location ) ;
147
+ }
148
+ }
149
+
150
+ for ( const [ key , value ] of Object . entries ( process . env ) ) {
151
+ if ( ! value || ! key . toLowerCase ( ) . startsWith ( 'npm_config_' ) ) {
152
+ continue ;
153
+ }
154
+
155
+ const normalizedName = key
156
+ . substr ( 11 )
157
+ . replace ( / (? ! ^ ) _ / g, '-' ) // don't replace _ at the start of the key
158
+ . toLowerCase ( ) ;
159
+ options [ normalizedName ] = value ;
160
+ }
152
161
153
- switch ( key ) {
154
- // Unless auth options are scope with the registry url it appears that npm-registry-fetch ignores them,
155
- // even though they are documented.
156
- // https://github.com/npm/npm-registry-fetch/blob/8954f61d8d703e5eb7f3d93c9b40488f8b1b62ac/README.md
157
- // https://github.com/npm/npm-registry-fetch/blob/8954f61d8d703e5eb7f3d93c9b40488f8b1b62ac/auth.js#L45-L91
158
- case '_authToken' :
159
- case 'token' :
160
- case 'username' :
161
- case 'password' :
162
- case '_auth' :
163
- case 'auth' :
164
- options [ 'forceAuth' ] ??= { } ;
165
- options [ 'forceAuth' ] [ key ] = substitutedValue ;
166
- break ;
167
- case 'noproxy' :
168
- case 'no-proxy' :
169
- options [ 'noProxy' ] = substitutedValue ;
170
- break ;
171
- case 'maxsockets' :
172
- options [ 'maxSockets' ] = substitutedValue ;
173
- break ;
174
- case 'https-proxy' :
175
- case 'proxy' :
176
- options [ 'proxy' ] = substitutedValue ;
177
- break ;
178
- case 'strict-ssl' :
179
- options [ 'strictSSL' ] = substitutedValue ;
180
- break ;
181
- case 'local-address' :
182
- options [ 'localAddress' ] = substitutedValue ;
183
- break ;
184
- case 'cafile' :
185
- if ( typeof substitutedValue === 'string' ) {
186
- const cafile = path . resolve ( path . dirname ( location ) , substitutedValue ) ;
187
- try {
188
- options [ 'ca' ] = readFileSync ( cafile , 'utf8' ) . replace ( / \r ? \n / g, '\n' ) ;
189
- } catch { }
190
- }
191
- break ;
192
- default :
193
- options [ key ] = substitutedValue ;
194
- break ;
162
+ options = normalizeOptions ( options ) ;
163
+
164
+ return options ;
165
+ }
166
+
167
+ function normalizeOptions (
168
+ rawOptions : PackageManagerOptions ,
169
+ location = process . cwd ( ) ,
170
+ ) : PackageManagerOptions {
171
+ const options : PackageManagerOptions = { } ;
172
+
173
+ for ( const [ key , value ] of Object . entries ( rawOptions ) ) {
174
+ let substitutedValue = value ;
175
+
176
+ // Substitute any environment variable references.
177
+ if ( typeof value === 'string' ) {
178
+ substitutedValue = value . replace ( / \$ \{ ( [ ^ \} ] + ) \} / , ( _ , name ) => process . env [ name ] || '' ) ;
179
+ }
180
+
181
+ switch ( key ) {
182
+ // Unless auth options are scope with the registry url it appears that npm-registry-fetch ignores them,
183
+ // even though they are documented.
184
+ // https://github.com/npm/npm-registry-fetch/blob/8954f61d8d703e5eb7f3d93c9b40488f8b1b62ac/README.md
185
+ // https://github.com/npm/npm-registry-fetch/blob/8954f61d8d703e5eb7f3d93c9b40488f8b1b62ac/auth.js#L45-L91
186
+ case '_authToken' :
187
+ case 'token' :
188
+ case 'username' :
189
+ case 'password' :
190
+ case '_auth' :
191
+ case 'auth' :
192
+ options [ 'forceAuth' ] ??= { } ;
193
+ options [ 'forceAuth' ] [ key ] = substitutedValue ;
194
+ break ;
195
+ case 'noproxy' :
196
+ case 'no-proxy' :
197
+ options [ 'noProxy' ] = substitutedValue ;
198
+ break ;
199
+ case 'maxsockets' :
200
+ options [ 'maxSockets' ] = substitutedValue ;
201
+ break ;
202
+ case 'https-proxy' :
203
+ case 'proxy' :
204
+ options [ 'proxy' ] = substitutedValue ;
205
+ break ;
206
+ case 'strict-ssl' :
207
+ options [ 'strictSSL' ] = substitutedValue ;
208
+ break ;
209
+ case 'local-address' :
210
+ options [ 'localAddress' ] = substitutedValue ;
211
+ break ;
212
+ case 'cafile' :
213
+ if ( typeof substitutedValue === 'string' ) {
214
+ const cafile = path . resolve ( path . dirname ( location ) , substitutedValue ) ;
215
+ try {
216
+ options [ 'ca' ] = readFileSync ( cafile , 'utf8' ) . replace ( / \r ? \n / g, '\n' ) ;
217
+ } catch { }
195
218
}
196
- }
219
+ break ;
220
+ default :
221
+ options [ key ] = substitutedValue ;
222
+ break ;
197
223
}
198
224
}
199
225
0 commit comments