Skip to content

Commit 0dff9ec

Browse files
committed
chore: Use lerna fixed versioning
Reference: https://github.com/lerna/lerna#fixedlocked-mode-default 1. Currently the SDK create a new tag for each new version each subpackage. This results in having too many tags to maintain. 2. Using independent versioning also adds some unnecessary complexity over the release system. 3. Most popular monorepos use fixed versioning, like Lerna, Babel See: aws-sdk-js-v3 switched to fixed versioning with their release candidate in aws/aws-sdk-js-v3#1248
1 parent cfc041c commit 0dff9ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lerna.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
2-
"lerna": "3.13.3",
32
"packages": [
43
"modules/*"
54
],
6-
"version": "independent",
5+
"version": "2.0.0",
76
"command": {
87
"bootstrap": {
98
"nohoist": [

0 commit comments

Comments
 (0)