workspace-tools
Advanced tools
Comparing version 0.12.2 to 0.12.3
@@ -5,3 +5,18 @@ { | ||
{ | ||
"date": "Tue, 16 Feb 2021 23:49:24 GMT", | ||
"date": "Tue, 23 Feb 2021 20:08:49 GMT", | ||
"tag": "workspace-tools_v0.12.3", | ||
"version": "0.12.3", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "fixing up the rush package detection code", | ||
"author": "kchau@microsoft.com", | ||
"commit": "22df474093036b36f627ef92f8b8c1fcbdabe5ac", | ||
"package": "workspace-tools" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Tue, 16 Feb 2021 23:49:29 GMT", | ||
"tag": "workspace-tools_v0.12.2", | ||
@@ -8,0 +23,0 @@ "version": "0.12.2", |
# Change Log - workspace-tools | ||
This log was last generated on Tue, 16 Feb 2021 23:49:24 GMT and should not be manually modified. | ||
This log was last generated on Tue, 23 Feb 2021 20:08:49 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 0.12.3 | ||
Tue, 23 Feb 2021 20:08:49 GMT | ||
### Patches | ||
- fixing up the rush package detection code (kchau@microsoft.com) | ||
## 0.12.2 | ||
Tue, 16 Feb 2021 23:49:24 GMT | ||
Tue, 16 Feb 2021 23:49:29 GMT | ||
@@ -11,0 +19,0 @@ ### Patches |
@@ -10,2 +10,3 @@ "use strict"; | ||
const fs_1 = __importDefault(require("fs")); | ||
const getWorkspacePackageInfo_1 = require("../getWorkspacePackageInfo"); | ||
function getRushWorkspaceRoot(cwd) { | ||
@@ -25,9 +26,3 @@ const rushJsonPath = find_up_1.default.sync("rush.json", { cwd }); | ||
const root = path_1.default.dirname(rushJsonPath); | ||
return rushConfig.projects.map((project) => { | ||
return { | ||
name: project.packageName, | ||
path: path_1.default.join(root, project.projectFolder), | ||
packageJson: Object.assign(Object.assign({}, project.packageJson), { packageJsonPath: path_1.default.join(root, project.projectFolder, "package.json") }), | ||
}; | ||
}); | ||
return getWorkspacePackageInfo_1.getWorkspacePackageInfo(rushConfig.projects.map((project) => path_1.default.join(root, project.projectFolder))); | ||
} | ||
@@ -34,0 +29,0 @@ catch (_a) { |
{ | ||
"name": "workspace-tools", | ||
"version": "0.12.2", | ||
"version": "0.12.3", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101887
2373