rman 0.33.1 → 0.33.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,7 +30,7 @@ class PublishCommand extends run_command_js_1.RunCommand {
|
|
|
30
30
|
npmlog_1.default.info(this.commandName, logPkgName, npmlog_1.default.separator, `Fetching package information from repository`);
|
|
31
31
|
const npmHelper = new npm_utils_js_1.NpmHelper({ cwd: p.dirname });
|
|
32
32
|
promises.push(npmHelper
|
|
33
|
-
.getPackageInfo(p.json.name)
|
|
33
|
+
.getPackageInfo(p.json.name, { userconfig: this.options.userconfig })
|
|
34
34
|
.then(r => {
|
|
35
35
|
const sameVersion = !!(r && r.version === p.version);
|
|
36
36
|
if (this.options.checkOnly) {
|
|
@@ -26,7 +26,7 @@ export class PublishCommand extends RunCommand {
|
|
|
26
26
|
logger.info(this.commandName, logPkgName, logger.separator, `Fetching package information from repository`);
|
|
27
27
|
const npmHelper = new NpmHelper({ cwd: p.dirname });
|
|
28
28
|
promises.push(npmHelper
|
|
29
|
-
.getPackageInfo(p.json.name)
|
|
29
|
+
.getPackageInfo(p.json.name, { userconfig: this.options.userconfig })
|
|
30
30
|
.then(r => {
|
|
31
31
|
const sameVersion = !!(r && r.version === p.version);
|
|
32
32
|
if (this.options.checkOnly) {
|