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);