@microsoft/rush-lib
Advanced tools
Comparing version 2.3.1 to 2.4.0
@@ -5,2 +5,25 @@ { | ||
{ | ||
"version": "2.4.0", | ||
"tag": "@microsoft/rush-lib_v2.4.0", | ||
"date": "Thu, 30 Mar 2017 18:25:38 GMT", | ||
"comments": { | ||
"minor": [ | ||
{ | ||
"comment": "The 'link' action will be automatically ran after 'install' or 'generate'." | ||
}, | ||
{ | ||
"comment": "Support adding a suffix during rush generate" | ||
} | ||
], | ||
"patch": [ | ||
{ | ||
"comment": "Fixing an issue where install was not detecting changes to the shrinkwrap" | ||
}, | ||
{ | ||
"comment": "Registry should not be hardcoded when auth token is provided" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "2.3.0", | ||
@@ -7,0 +30,0 @@ "tag": "@microsoft/rush-lib_v2.3.0", |
# Change Log - @microsoft/rush-lib | ||
This log was last generated on Fri, 24 Feb 2017 22:53:18 GMT and should not be manually modified. | ||
This log was last generated on Thu, 30 Mar 2017 18:25:38 GMT and should not be manually modified. | ||
## 2.4.0 | ||
Thu, 30 Mar 2017 18:25:38 GMT | ||
### Minor changes | ||
- The 'link' action will be automatically ran after 'install' or 'generate'. | ||
- Support adding a suffix during rush generate | ||
### Patches | ||
- Fixing an issue where install was not detecting changes to the shrinkwrap | ||
- Registry should not be hardcoded when auth token is provided | ||
## 2.3.0 | ||
@@ -6,0 +19,0 @@ Fri, 24 Feb 2017 22:53:18 GMT |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** | ||
@@ -5,0 +6,0 @@ * Represents all of the types of change requests. |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var path = require("path"); | ||
@@ -194,5 +195,4 @@ var PackageDependencyKind; | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = Package; | ||
//# sourceMappingURL=Package.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var fsx = require("fs-extra"); | ||
@@ -184,5 +185,4 @@ var path = require("path"); | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = PackageReviewConfiguration; | ||
//# sourceMappingURL=PackageReviewConfiguration.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var path = require("path"); | ||
@@ -489,5 +490,4 @@ var fsx = require("fs-extra"); | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = RushConfiguration; | ||
//# sourceMappingURL=RushConfiguration.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var path = require("path"); | ||
@@ -168,5 +169,4 @@ var fsx = require("fs-extra"); | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = RushConfigurationProject; | ||
//# sourceMappingURL=RushConfigurationProject.js.map |
/// <reference types='mocha' /> | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var chai_1 = require("chai"); | ||
@@ -4,0 +5,0 @@ var VersionMismatchFinder_1 = require("../VersionMismatchFinder"); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var VersionMismatchFinder = (function () { | ||
@@ -3,0 +4,0 @@ function VersionMismatchFinder(projects) { |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var ErrorDetectionMode; | ||
@@ -55,5 +56,4 @@ (function (ErrorDetectionMode) { | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = ErrorDetector; | ||
//# sourceMappingURL=ErrorDetector.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var TestErrorDetector_1 = require("./TestErrorDetector"); | ||
@@ -5,0 +6,0 @@ exports.TestErrorDetector = TestErrorDetector_1.default; |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
// tslint:disable:export-name | ||
@@ -16,5 +17,4 @@ var ErrorDetector_1 = require("../ErrorDetector"); | ||
}); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = testErrorDetector; | ||
//# sourceMappingURL=TestErrorDetector.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
// tslint:disable:export-name | ||
@@ -25,5 +26,4 @@ var ErrorDetector_1 = require("../ErrorDetector"); | ||
}); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = tsErrorDetector; | ||
//# sourceMappingURL=TsErrorDetector.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
// tslint:disable:export-name | ||
@@ -25,5 +26,4 @@ var ErrorDetector_1 = require("../ErrorDetector"); | ||
}); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = tsLintErrorDetector; | ||
//# sourceMappingURL=TsLintErrorDetector.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var ErrorDetector_1 = require("./ErrorDetector"); | ||
@@ -30,3 +36,2 @@ /** | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = TaskError; | ||
@@ -33,0 +38,0 @@ /** |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var child_process = require("child_process"); | ||
@@ -5,0 +6,0 @@ var os = require("os"); |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var RushConfiguration_1 = require("./data/RushConfiguration"); | ||
@@ -5,0 +6,0 @@ exports.RushConfiguration = RushConfiguration_1.default; |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var path = require("path"); | ||
@@ -8,5 +9,4 @@ var myPackageJsonFilename = path.resolve(path.join(module.filename, '..', '..', 'package.json')); | ||
var rushVersion = myPackageJson.version; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = rushVersion; | ||
//# sourceMappingURL=rushVersion.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var child_process = require("child_process"); | ||
@@ -54,5 +55,4 @@ var os = require("os"); | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = AsyncRecycle; | ||
//# sourceMappingURL=AsyncRecycle.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var fsx = require("fs-extra"); | ||
@@ -34,5 +35,4 @@ var os = require("os"); | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = JsonFile; | ||
//# sourceMappingURL=JsonFile.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var Utilities_1 = require("./Utilities"); | ||
@@ -5,0 +6,0 @@ var StopwatchState; |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/// <reference types='mocha' /> | ||
@@ -5,0 +6,0 @@ var chai_1 = require("chai"); |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var child_process = require("child_process"); | ||
@@ -275,5 +276,4 @@ var fsx = require("fs-extra"); | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = Utilities; | ||
//# sourceMappingURL=Utilities.js.map |
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. | ||
// See LICENSE in the project root for license information. | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var child_process = require("child_process"); | ||
@@ -42,5 +43,4 @@ var VersionControl = (function () { | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = VersionControl; | ||
//# sourceMappingURL=VersionControl.js.map |
{ | ||
"name": "@microsoft/rush-lib", | ||
"version": "2.3.1", | ||
"version": "2.4.0", | ||
"description": "Library support for the Rush tool", | ||
@@ -22,14 +22,14 @@ "repository": { | ||
"@types/es6-collections": "0.5.29", | ||
"@types/fs-extra": "0.0.34", | ||
"@types/fs-extra": "0.0.37", | ||
"@types/mocha": "2.2.38", | ||
"@types/node": "6.0.62", | ||
"@types/z-schema": "3.16.31", | ||
"fs-extra": "~0.26.0", | ||
"fs-extra": "~0.26.7", | ||
"jju": "~1.3.0", | ||
"rimraf": "~2.5.2", | ||
"semver": "~5.2.0", | ||
"rimraf": "~2.5.4", | ||
"semver": "~5.3.0", | ||
"z-schema": "~3.17.0" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/node-library-build": "~2.3.0", | ||
"@microsoft/node-library-build": ">=2.3.1 <3.0.0", | ||
"chai": "~3.5.0", | ||
@@ -36,0 +36,0 @@ "gulp": "~3.9.1", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
307205
3369
+ Added@types/fs-extra@0.0.37(transitive)
+ Addedsemver@5.3.0(transitive)
- Removed@types/fs-extra@0.0.34(transitive)
- Removedsemver@5.2.0(transitive)
Updated@types/fs-extra@0.0.37
Updatedfs-extra@~0.26.7
Updatedrimraf@~2.5.4
Updatedsemver@~5.3.0