Skip to content

Commit 35bccec

Browse files
committed
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 And aws/aws-encryption-sdk-javascript#523
1 parent 86ad0b6 commit 35bccec

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lerna.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
2-
"packages": [
3-
"packages/*"
4-
],
5-
"version": "independent"
2+
"packages": ["packages/*"],
3+
"version": "1.1.1"
64
}

0 commit comments

Comments
 (0)