Fix string interpolation for auth token.

This commit is contained in:
Iheanyi Ekechukwu 2019-08-06 11:19:12 -04:00 committed by GitHub
parent da3e59948e
commit f20c85e5e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ function writeRegistryToFile(registryUrl: string, fileLocation: string) {
}
// Remove http: or https: from front of registry.
const authString =
registryUrl.replace(/(^\w+:|^)/, '') + ':_authToken=${NODE_AUTH_TOKEN}';
registryUrl.replace(/(^\w+:|^)/, '') + `:_authToken=${NODE_AUTH_TOKEN}`;
const registryString = scope
? `${scope}:registry=${registryUrl}`
: `registry=${registryUrl}`;