newspack-scripts 4.3.1 → 4.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripts/release.js +3 -1
package/package.json
CHANGED
package/scripts/release.js
CHANGED
|
@@ -36,7 +36,9 @@ const config = {
|
|
|
36
36
|
// `hotfix/*` branches – for releases outside of the release schedule.
|
|
37
37
|
{
|
|
38
38
|
name: "hotfix/*",
|
|
39
|
-
prerelease: true
|
|
39
|
+
// With `prerelease: true`, the `name` would be used for the pre-release tag. A name with a `/`
|
|
40
|
+
// is not valid, though. See https://semver.org/#spec-item-9.
|
|
41
|
+
prerelease: "hotfix",
|
|
40
42
|
},
|
|
41
43
|
],
|
|
42
44
|
prepare: [
|