Add missing backslash that is part of registry URL comparison in Lerna

This commit is contained in:
Fabio Berger
2019-07-23 04:01:17 -07:00
parent ff8fabf49e
commit cbcede3b63

View File

@@ -1,6 +1,6 @@
const IS_LOCAL_PUBLISH = process.env.IS_LOCAL_PUBLISH === 'true';
const LOCAL_NPM_REGISTRY_URL = 'http://localhost:4873';
const REMOTE_NPM_REGISTRY_URL = 'https://registry.npmjs.org';
const REMOTE_NPM_REGISTRY_URL = 'https://registry.npmjs.org/';
export const configs = {
IS_LOCAL_PUBLISH,