@microsoft/rush-lib
Advanced tools
Comparing version 3.0.16 to 3.0.17
@@ -5,2 +5,14 @@ { | ||
{ | ||
"version": "3.0.17", | ||
"tag": "@microsoft/rush-lib_v3.0.17", | ||
"date": "Thu, 14 Sep 2017 18:51:05 GMT", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "Fix some issues in rush telemetry collection" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "3.0.16", | ||
@@ -7,0 +19,0 @@ "tag": "@microsoft/rush-lib_v3.0.16", |
# Change Log - @microsoft/rush-lib | ||
This log was last generated on Thu, 07 Sep 2017 00:16:44 GMT and should not be manually modified. | ||
This log was last generated on Thu, 14 Sep 2017 18:51:05 GMT and should not be manually modified. | ||
## 3.0.17 | ||
Thu, 14 Sep 2017 18:51:05 GMT | ||
### Patches | ||
- Fix some issues in rush telemetry collection | ||
## 3.0.16 | ||
@@ -6,0 +13,0 @@ Wed, 6 Sep 2017 18:24:39 GMT |
@@ -15,3 +15,3 @@ import RushConfigurationProject from './RushConfigurationProject'; | ||
private _addDependenciesToList(project, dependencyMap, exclude); | ||
private _iterableToArray<T>(iterable); | ||
private _getKeys(iterable); | ||
} |
@@ -22,7 +22,7 @@ "use strict"; | ||
VersionMismatchFinder.prototype.getMismatches = function () { | ||
return this._iterableToArray(this._mismatches.keys()); | ||
return this._getKeys(this._mismatches); | ||
}; | ||
VersionMismatchFinder.prototype.getVersionsOfMismatch = function (mismatch) { | ||
return this._mismatches.has(mismatch) | ||
? this._iterableToArray(this._mismatches.get(mismatch).keys()) | ||
? this._getKeys(this._mismatches.get(mismatch)) | ||
: undefined; | ||
@@ -67,9 +67,10 @@ }; | ||
}; | ||
VersionMismatchFinder.prototype._iterableToArray = function (iterable) { | ||
var b = []; | ||
var a; | ||
while ((a = iterable.next()) && !a.done) { | ||
b.push(a.value); | ||
} | ||
return b; | ||
// tslint:disable-next-line:no-any | ||
VersionMismatchFinder.prototype._getKeys = function (iterable) { | ||
var keys = []; | ||
// tslint:disable-next-line:no-any | ||
iterable.forEach(function (value, key) { | ||
keys.push(key); | ||
}); | ||
return keys; | ||
}; | ||
@@ -76,0 +77,0 @@ return VersionMismatchFinder; |
{ | ||
"name": "@microsoft/rush-lib", | ||
"version": "3.0.16", | ||
"version": "3.0.17", | ||
"description": "A library for writing scripts that interact with the Rush tool", | ||
@@ -19,5 +19,4 @@ "repository": { | ||
"dependencies": { | ||
"@microsoft/node-core-library": "~0.2.6", | ||
"@microsoft/stream-collator": "~2.0.6", | ||
"@types/es6-collections": "0.5.29", | ||
"@microsoft/node-core-library": "~0.2.10", | ||
"@microsoft/stream-collator": "~2.0.7", | ||
"@types/fs-extra": "0.0.37", | ||
@@ -35,3 +34,3 @@ "@types/node": "6.0.62", | ||
"devDependencies": { | ||
"@microsoft/node-library-build": "~4.0.4", | ||
"@microsoft/node-library-build": "~4.0.7", | ||
"chai": "~3.5.0", | ||
@@ -41,3 +40,3 @@ "gulp": "~3.9.1", | ||
"sinon": "~1.17.3", | ||
"@types/lodash": "4.14.52", | ||
"@types/lodash": "4.14.74", | ||
"@types/sinon": "1.16.34", | ||
@@ -44,0 +43,0 @@ "@types/mocha": "2.2.38", |
Sorry, the diff of this file is not supported yet
398310
12
5061
- Removed@types/es6-collections@0.5.29
- Removed@types/es6-collections@0.5.29(transitive)