pnpm-shrinkwrap
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -69,6 +69,7 @@ "use strict"; | ||
continue; | ||
// local dependencies don't need to be resolved in shrinkwrap.yaml | ||
if (pkgId.indexOf('file:') === 0) | ||
continue; | ||
if (!shr.packages || !shr.packages[pkgId]) { | ||
// local dependencies don't need to be resolved in shrinkwrap.yaml | ||
// except local tarball dependencies | ||
if (pkgId.startsWith('file:') && !pkgId.endsWith('.tar.gz')) | ||
continue; | ||
pnpm_logger_1.default.warn(`Cannot find resolution of ${pkgId} in shrinkwrap file`); | ||
@@ -75,0 +76,0 @@ continue; |
{ | ||
"name": "pnpm-shrinkwrap", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "pnpm's shrinkwrap", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
23628
341