Skip to content

Commit b4e9698

Browse files
committed
fix: stricter typings + typedoc comments
1 parent 802ff15 commit b4e9698

File tree

9 files changed

+5320
-25
lines changed

9 files changed

+5320
-25
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
build
22
/**/build
3+
**/docs
34
.DS_Store
45
node_modules
56
coverage

.releaserc

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
11
{
2-
"tagFormat": "${version}"
2+
"tagFormat": "${version}",
3+
"branch": "master",
4+
"plugins": [
5+
"@semantic-release/commit-analyzer",
6+
"@semantic-release/release-notes-generator",
7+
"@semantic-release/changelog",
8+
"@semantic-release/github",
9+
"@semantic-release/git",
10+
"@semantic-release/npm"
11+
],
12+
"verifyConditions": [
13+
"@semantic-release/changelog",
14+
"@semantic-release/npm",
15+
"@semantic-release/git",
16+
"@semantic-release/github",
17+
"@qiwi/semantic-release-gh-pages-plugin"
18+
],
19+
"publish": [
20+
"@semantic-release/github",
21+
{
22+
"path": "@qiwi/semantic-release-gh-pages-plugin",
23+
"msg": "github pages release",
24+
"src": "docs/",
25+
"branch": "gh-pages"
26+
},
27+
"@semantic-release/npm"
28+
],
29+
"success": [
30+
"@semantic-release/github"
31+
],
32+
"fail": [
33+
"@semantic-release/github"
34+
]
335
}

0 commit comments

Comments
 (0)