-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: stricter typings + typedoc comments
- Loading branch information
1 parent
802ff15
commit b4e9698
Showing
9 changed files
with
5,320 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
build | ||
/**/build | ||
**/docs | ||
.DS_Store | ||
node_modules | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,35 @@ | ||
{ | ||
"tagFormat": "${version}" | ||
"tagFormat": "${version}", | ||
"branch": "master", | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/github", | ||
"@semantic-release/git", | ||
"@semantic-release/npm" | ||
], | ||
"verifyConditions": [ | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/git", | ||
"@semantic-release/github", | ||
"@qiwi/semantic-release-gh-pages-plugin" | ||
], | ||
"publish": [ | ||
"@semantic-release/github", | ||
{ | ||
"path": "@qiwi/semantic-release-gh-pages-plugin", | ||
"msg": "github pages release", | ||
"src": "docs/", | ||
"branch": "gh-pages" | ||
}, | ||
"@semantic-release/npm" | ||
], | ||
"success": [ | ||
"@semantic-release/github" | ||
], | ||
"fail": [ | ||
"@semantic-release/github" | ||
] | ||
} |
Oops, something went wrong.