From 3dd086f71158f3a7a0f2bd1d7ffda4e703df3416 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 11 Dec 2018 00:25:39 +0100 Subject: [PATCH] fix(core): update --- ts/mod_npm/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/mod_npm/index.ts b/ts/mod_npm/index.ts index 2ea4db3..9812d60 100644 --- a/ts/mod_npm/index.ts +++ b/ts/mod_npm/index.ts @@ -78,7 +78,7 @@ const publish = async () => { // -> configure registry url if (config.npmRegistryUrl) { - npmAccessCliString = `--registry=https://${config.npmRegistryUrl}`; + npmRegistryCliString = `--registry=https://${config.npmRegistryUrl}`; } else { logger.log('error', `no registry url specified. Can't publish!`); process.exit(1);