Preserve package scope when generating tags from component #1528
Labels
priority: p3
Desirable enhancement or fix. May not be included in next release.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
Is your feature request related to a problem? Please describe.
I'm in the process of porting a repo that uses Lerna to release-please, Rep: streetsidesoftware/cspell-dicts: Various cspell dictionaries. The challenge is that the tag generation in
release-please
is removing the scope from the package name when generating the tags. For example, the package name is@cspell/dict-en_us
and the version tag is@cspell/dict-en_us@2.2.10
. Butrelease-please
is looking for tags staring withdict-en_us
which do not exist.There doesn't seem to be a way to tell
release-please
to keep the package scope.Related to #1497 and #1497
Describe the solution you'd like
Add a configuration option to keep the original package name including scope when tags are generated.
Describe alternatives you've considered
I tried adding
package-name
in the packages section ofrelease-please-config.json
, but that did not work.Additional context
The text was updated successfully, but these errors were encountered: