@virmator/publish 13.0.5 → 13.1.0
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/dist/publish.js +1 -1
- package/package.json +5 -2
package/dist/publish.js
CHANGED
|
@@ -207,7 +207,7 @@ async function getGitCommitVersion(decrement, git) {
|
|
|
207
207
|
const output = await git.raw(`show HEAD~${decrement} --pretty='%D${gitCommitFormatDelimiter}%s' -s`.split(' '));
|
|
208
208
|
const [maybeTag, message,] = output.split(gitCommitFormatDelimiter);
|
|
209
209
|
const tags = maybeTag
|
|
210
|
-
? Array.from(maybeTag.matchAll(/tag: ([^),]+)
|
|
210
|
+
? Array.from(maybeTag.matchAll(/tag: ([^),]+)[),]/g))
|
|
211
211
|
.map((entry) => entry[1])
|
|
212
212
|
.filter(isTruthy)
|
|
213
213
|
: [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@virmator/publish",
|
|
3
|
-
"version": "13.0
|
|
3
|
+
"version": "13.1.0",
|
|
4
4
|
"description": "Default publish plugin for virmator.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"virmator",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@augment-vir/common": "^29.3.0",
|
|
37
37
|
"@augment-vir/node-js": "^29.3.0",
|
|
38
|
-
"@virmator/core": "^13.0
|
|
38
|
+
"@virmator/core": "^13.1.0",
|
|
39
39
|
"chalk": "^5.3.0",
|
|
40
40
|
"mri": "^1.2.0",
|
|
41
41
|
"run-time-assertions": "^1.5.2",
|
|
@@ -50,6 +50,9 @@
|
|
|
50
50
|
"type-fest": "^4.23.0",
|
|
51
51
|
"typedoc": "^0.26.5"
|
|
52
52
|
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=22"
|
|
55
|
+
},
|
|
53
56
|
"publishConfig": {
|
|
54
57
|
"access": "public"
|
|
55
58
|
}
|