This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This introduces the 'packageGroupManifestField' config option to create groups of packages based on a common field in each workspace manifest (package.json). All packages within a group will have the same version strategy and version number at publish time, and will be grouped under a single git tag and single release (under the GitHub plugin).
- Loading branch information
Noah
authored
Dec 25, 2021
1 parent
559de51
commit 1e8711a
Showing
42 changed files
with
3,218 additions
and
4,451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
codecov: | ||
require_ci_to_pass: true | ||
|
||
notify: | ||
wait_for_ci: true | ||
notify: | ||
wait_for_ci: true | ||
|
||
coverage: | ||
status: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,10 @@ describe('writeChangesetFile', () => { | |
['pkg-1', '[email protected]'], | ||
['pkg-2', '[email protected]'], | ||
]), | ||
workspaceGroups: new Map([ | ||
['pkg-1', new Set(['pkg-1'])], | ||
['pkg-2', new Set(['pkg-2'])], | ||
]), | ||
}) | ||
|
||
expect(changeset).toEqual( | ||
|
@@ -83,13 +87,15 @@ describe('writeChangesetFile', () => { | |
strategy: 'major', | ||
tag: '[email protected]', | ||
version: '2.0.0', | ||
group: 'pkg-1', | ||
}, | ||
'pkg-2': { | ||
changelog: expect.stringContaining('fancy change'), | ||
previousVersion: '4.5.2', | ||
strategy: 'minor', | ||
tag: '[email protected]', | ||
version: '4.6.0', | ||
group: 'pkg-2', | ||
}, | ||
}), | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.