From e37a5de79b827d7586075e79764aab44968eba65 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Mon, 6 Feb 2017 08:29:15 -0500 Subject: [PATCH] default to undefined --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 9e99eaa..8617e8b 100644 --- a/index.js +++ b/index.js @@ -12,7 +12,7 @@ module.exports = function(gulp, config){ config.buildVersion = config.buildVersion || undefined; config.email = config.email || undefined; config.strictSsl = config.strictSsl || true; - config.registry = config.registry || "https://registry.npmjs.org/"; + config.registry = config.registry || undefined; config.npmObj = config.npmObj || { registry: config.registry , "strict-ssl": config.strictSsl,