Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
2d34397b9b | |||
2744e1a92b |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartnpm",
|
"name": "@pushrocks/smartnpm",
|
||||||
"version": "1.0.24",
|
"version": "1.0.25",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartnpm",
|
"name": "@pushrocks/smartnpm",
|
||||||
"version": "1.0.24",
|
"version": "1.0.25",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "interface with npm to retrieve package information",
|
"description": "interface with npm to retrieve package information",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -122,6 +122,9 @@ export class NpmPackage {
|
|||||||
// lets find the best matching release
|
// lets find the best matching release
|
||||||
const versionStrings = this.allVersions.map((packageVersion) => packageVersion.version);
|
const versionStrings = this.allVersions.map((packageVersion) => packageVersion.version);
|
||||||
const bestMatchingVersion = targetVersion.getBestMatch(versionStrings);
|
const bestMatchingVersion = targetVersion.getBestMatch(versionStrings);
|
||||||
|
if (!bestMatchingVersion) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
tarballUrl = this.allVersions.find(
|
tarballUrl = this.allVersions.find(
|
||||||
(packageVersion) => packageVersion.version === bestMatchingVersion
|
(packageVersion) => packageVersion.version === bestMatchingVersion
|
||||||
).dist.tarball;
|
).dist.tarball;
|
||||||
@ -142,6 +145,7 @@ export class NpmPackage {
|
|||||||
console.log(err);
|
console.log(err);
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
|
done.resolve(null);
|
||||||
subscription.unsubscribe();
|
subscription.unsubscribe();
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user