chore(repo): simplify nx release config (#20994)

This commit is contained in:
James Henry 2024-01-04 23:46:22 +04:00 committed by GitHub
parent fd8668007a
commit 34c68c0a20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
nx.json
View File

@ -26,6 +26,11 @@
] ]
}, },
"release": { "release": {
"projects": [
"packages/*",
"packages/nx/native-packages/*",
"packages-legacy/*"
],
"releaseTagPattern": "{version}", "releaseTagPattern": "{version}",
"changelog": { "changelog": {
"workspaceChangelog": { "workspaceChangelog": {
@ -33,19 +38,10 @@
"file": false "file": false
} }
}, },
"groups": { "version": {
"npm": { "generatorOptions": {
"projects": [ "packageRoot": "build/packages/{projectName}",
"packages/*", "currentVersionResolver": "registry"
"packages/nx/native-packages/*",
"packages-legacy/*"
],
"version": {
"generatorOptions": {
"packageRoot": "build/packages/{projectName}",
"currentVersionResolver": "registry"
}
}
} }
} }
}, },