From 890efcc746ec29da71e2bf5a9299f80b872d6dea Mon Sep 17 00:00:00 2001 From: Seth Silesky <5115498+silesky@users.noreply.github.com> Date: Sat, 23 Jul 2022 23:31:36 -0500 Subject: [PATCH] fix comment --- scripts/create-release-from-tags/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/create-release-from-tags/index.ts b/scripts/create-release-from-tags/index.ts index 9fd4146fa..33dbfffd9 100755 --- a/scripts/create-release-from-tags/index.ts +++ b/scripts/create-release-from-tags/index.ts @@ -111,6 +111,10 @@ const extractPartsFromTag = (rawTag: string): Tag | undefined => { } } +/** + * + * @param rawTags - string delimited list of tags (e.g. `@segment/analytics-next@2.1.1 @segment/analytics-core@1.0.0`) + */ export const parseRawTags = (rawTags: string): Tag[] => { return rawTags.trim().split(' ').map(extractPartsFromTag).filter(exists) }