Spike to default the scope from package.json

pull/129/head
Jason Karns 2020-03-29 16:28:34 -04:00
parent eff380dfbc
commit 574c6daa52
No known key found for this signature in database
GPG Key ID: 4F072FBC1ACA2746
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ function writeRegistryToFile(
if (!scope && registryUrl.indexOf('npm.pkg.github.com') > -1) {
scope = github.context.repo.owner;
}
if (!scope && namePrefix = require('./package').name.match('@[^/]+')) {
scope = namePrefix[0];
}
if (scope && scope[0] != '@') {
scope = '@' + scope;
}