Skip to content

Commit 3548485

Browse files
committed
fix: Switch registry to https
1 parent 63314d6 commit 3548485

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"url": "https://github.com/alexbrazier/package-bundle.git"
4242
},
4343
"bugs": {
44-
"url": "http://github.com/alexbrazier/package-bundle/issues"
44+
"url": "https://github.com/alexbrazier/package-bundle/issues"
4545
},
4646
"engines": {
4747
"node": ">= 4"

src/Resolver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import PBRequest from './PBRequest';
88

99
const writeFile = Promise.promisify(fs.writeFile);
1010

11-
const REGISTRY_URL = 'http://registry.npmjs.org';
11+
const REGISTRY_URL = 'https://registry.npmjs.org';
1212
const CACHE_FILE = 'package-bundle-cache.json';
1313
const PACKAGE_JSON = 'package.json';
1414

0 commit comments

Comments
 (0)