Skip to content

Commit 73f60d0

Browse files
authored
fix: replace null with intentionally-skip in release-spec template comment (#99)
1 parent ac1927b commit 73f60d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/release-specification.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe('release-specification', () => {
5353
# - "minor" (if you want to bump the minor part of the package's version)
5454
# - "patch" (if you want to bump the patch part of the package's version)
5555
# - an exact version with major, minor, and patch parts (e.g. "1.2.3")
56-
# - null (to skip the package entirely)
56+
# - intentionally-skip (to skip the package entirely)
5757
#
5858
# When you're finished making your selections, save this file and
5959
# create-release-branch will continue automatically.
@@ -116,7 +116,7 @@ packages:
116116
# - "minor" (if you want to bump the minor part of the package's version)
117117
# - "patch" (if you want to bump the patch part of the package's version)
118118
# - an exact version with major, minor, and patch parts (e.g. "1.2.3")
119-
# - null (to skip the package entirely)
119+
# - intentionally-skip (to skip the package entirely)
120120
#
121121
# When you're finished making your selections, save this file and then re-run
122122
# create-release-branch.

src/release-specification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export async function generateReleaseSpecificationTemplateForMonorepo({
7777
# - "minor" (if you want to bump the minor part of the package's version)
7878
# - "patch" (if you want to bump the patch part of the package's version)
7979
# - an exact version with major, minor, and patch parts (e.g. "1.2.3")
80-
# - null (to skip the package entirely)
80+
# - intentionally-skip (to skip the package entirely)
8181
#
8282
${afterEditingInstructions}
8383
`.trim();

0 commit comments

Comments
 (0)