beachball
Advanced tools
Comparing version 1.9.0 to 1.9.1
@@ -5,3 +5,17 @@ { | ||
{ | ||
"date": "Fri, 28 Jun 2019 17:53:19 GMT", | ||
"date": "Tue, 02 Jul 2019 15:41:37 GMT", | ||
"tag": "beachball_v1.9.1", | ||
"version": "1.9.1", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "makes the bump skip unknown packages", | ||
"author": "kchau@microsoft.com", | ||
"commit": "2421da762b583cf4fbaa86d04e9a3c8d9d11a53d" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Fri, 28 Jun 2019 17:53:25 GMT", | ||
"tag": "beachball_v1.9.0", | ||
@@ -8,0 +22,0 @@ "version": "1.9.0", |
# Change Log - beachball | ||
This log was last generated on Fri, 28 Jun 2019 17:53:19 GMT and should not be manually modified. | ||
This log was last generated on Tue, 02 Jul 2019 15:41:37 GMT and should not be manually modified. | ||
## 1.9.1 | ||
Tue, 02 Jul 2019 15:41:37 GMT | ||
### Patches | ||
- makes the bump skip unknown packages (kchau@microsoft.com) | ||
## 1.9.0 | ||
Fri, 28 Jun 2019 17:53:19 GMT | ||
Fri, 28 Jun 2019 17:53:25 GMT | ||
@@ -8,0 +15,0 @@ ### Minor changes |
@@ -22,2 +22,6 @@ "use strict"; | ||
const info = packageInfos[pkgName]; | ||
if (!info) { | ||
console.log(`Unknown package named "${pkgName}" detected from change files, skipping!`); | ||
return; | ||
} | ||
const changeType = packageChangeTypes[pkgName]; | ||
@@ -24,0 +28,0 @@ const packageJsonPath = path_1.default.join(gitRoot, info.packageJsonPath); |
{ | ||
"name": "beachball", | ||
"version": "1.9.0", | ||
"version": "1.9.1", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -32,2 +32,8 @@ import { findPackageRoot, findGitRoot } from './paths'; | ||
const info = packageInfos[pkgName]; | ||
if (!info) { | ||
console.log(`Unknown package named "${pkgName}" detected from change files, skipping!`); | ||
return; | ||
} | ||
const changeType = packageChangeTypes[pkgName]; | ||
@@ -34,0 +40,0 @@ const packageJsonPath = path.join(gitRoot, info.packageJsonPath); |
Sorry, the diff of this file is not supported yet
98970
2400