-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.js
75 lines (75 loc) · 2.41 KB
/
.releaserc.js
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
66
67
68
69
70
71
72
73
74
75
/**
* @type {import('semantic-release').GlobalConfig}
*/
module.exports = {
branches: ["master"],
preset: "angular",
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
// This will increase the version in the project without publishing it
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
// Replace __VERSION__ from "src/dragDropAnnotate.min.js" file with correct version
"semantic-release-replace-plugin",
{
"replacements": [
{
"files": ["src/dragDropAnnotate.min.js"],
"from": "__VERSION__",
"to": "v${nextRelease.version}",
"results": [
{
"file": "src/dragDropAnnotate.min.js",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
}
],
[
// Creating the zip file
"@semantic-release/exec",
{
"prepareCmd": "./build/create-zip.sh"
}
],
[
// Creating the release and tag on GitHub
"@semantic-release/github",
{
"assets": [
{
"path": "build/build.zip",
"name": "DragDropAnnotate-v${nextRelease.version}.zip",
"label": "DragDropAnnotate - v${nextRelease.version}"
},
]
}
],
[
// Commit with the new updated files
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json",
"src/dragDropAnnotate.min.js",
"src/dragDropAnnotate.min.css"
],
"message": "chore(release): ${nextRelease.version} :tada: [skip ci]\n\n${nextRelease.notes}"
}
]
]
}