@releasekit/version 0.7.1 → 0.7.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.
|
@@ -136,6 +136,7 @@ var GitHubReleaseConfigSchema = z.object({
|
|
|
136
136
|
* Available variables: ${packageName} (original scoped name), ${version} (e.g. "v1.0.0").
|
|
137
137
|
* Version-only tags (e.g. "v1.0.0") always use the tag as-is.
|
|
138
138
|
*/
|
|
139
|
+
/* biome-ignore lint/suspicious/noTemplateCurlyInString: default template value */
|
|
139
140
|
titleTemplate: z.string().default("${packageName}: ${version}")
|
|
140
141
|
});
|
|
141
142
|
var VerifyRegistryConfigSchema = z.object({
|
|
@@ -181,6 +182,7 @@ var PublishConfigSchema = z.object({
|
|
|
181
182
|
perPackage: true,
|
|
182
183
|
prerelease: "auto",
|
|
183
184
|
body: "auto",
|
|
185
|
+
/* biome-ignore lint/suspicious/noTemplateCurlyInString: default template value */
|
|
184
186
|
titleTemplate: "${packageName}: ${version}"
|
|
185
187
|
}),
|
|
186
188
|
verify: VerifyConfigSchema.default({
|
|
@@ -2393,7 +2395,7 @@ var VersionEngine = class {
|
|
|
2393
2395
|
return this.workspaceCache;
|
|
2394
2396
|
}
|
|
2395
2397
|
const pkgsResult = getPackagesSync(cwd2());
|
|
2396
|
-
if (!pkgsResult
|
|
2398
|
+
if (!pkgsResult?.packages) {
|
|
2397
2399
|
throw createVersionError("PACKAGES_NOT_FOUND" /* PACKAGES_NOT_FOUND */);
|
|
2398
2400
|
}
|
|
2399
2401
|
if (!pkgsResult.root) {
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@releasekit/version",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Semantic versioning based on Git history and conventional commits",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/micromatch": "^4.0.10",
|
|
53
53
|
"chalk": "^5.6.2",
|
|
54
54
|
"commander": "^14.0.3",
|
|
55
|
-
"conventional-changelog-angular": "^8.3.
|
|
55
|
+
"conventional-changelog-angular": "^8.3.1",
|
|
56
56
|
"conventional-changelog-conventional-commits": "npm:conventional-changelog-conventionalcommits@^9.0.0",
|
|
57
57
|
"conventional-changelog-conventionalcommits": "^9.3.0",
|
|
58
58
|
"conventional-commits-filter": "^5.0.0",
|
|
@@ -65,14 +65,14 @@
|
|
|
65
65
|
"zod": "^4.3.6"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@biomejs/biome": "^2.4.
|
|
68
|
+
"@biomejs/biome": "^2.4.10",
|
|
69
69
|
"@types/figlet": "^1.5.5",
|
|
70
70
|
"@types/node": "^22.19.15",
|
|
71
71
|
"@types/semver": "^7.7.1",
|
|
72
|
-
"@vitest/coverage-v8": "^4.1.
|
|
72
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
73
73
|
"tsup": "^8.5.1",
|
|
74
74
|
"typescript": "^5.9.3",
|
|
75
|
-
"vitest": "^4.1.
|
|
75
|
+
"vitest": "^4.1.2",
|
|
76
76
|
"@releasekit/config": "0.0.0",
|
|
77
77
|
"@releasekit/core": "0.0.0"
|
|
78
78
|
},
|