-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "corda5-testutils",
"private": true,
"type": "module",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commit-analyzer-fail-on-no-release": "^1.0.1",
"semantic-release": "^21.0.7",
"semantic-release-replace-plugin": "^1.2.6"
},
"release": {
"branches": ["master"],
"plugins": [
"commit-analyzer-fail-on-no-release",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md",
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file.\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)."
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"semantic-release-replace-plugin",
{
"replacements": [
{
"files": [
"gradle.properties"
],
"from": "\\bversion=.*",
"to": "version=${nextRelease.version}",
"results": [
{
"file": "gradle.properties",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
}
],
[
"@semantic-release/git",
{
"assets": [
"gradle.properties",
"docs/CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}