Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use registry.npmjs.com to fix shinkwrap resolves
Use the npm registry instead of yarns mirror. npm treats registry.npmjs.org as a special value that means 'the current configured package' in package-lock and npm-shrinkwrap. if we use registry.yarnpkg.com in our shrinkwrap then users with a custom registry will be forced to registry.yarnpkg.com. npm/cli#3783 I updated yarn.lock with sed. ``` sed 's|https://registry.yarnpkg.com|https://registry.npmjs.org|' yarn.lock -i ```
- Loading branch information