Skip to content

Commit

Permalink
fix: stricter typings + typedoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed May 14, 2019
1 parent 802ff15 commit b4e9698
Show file tree
Hide file tree
Showing 9 changed files with 5,320 additions and 25 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
build
/**/build
**/docs
.DS_Store
node_modules
coverage
34 changes: 33 additions & 1 deletion .releaserc
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"
]
}
Loading

0 comments on commit b4e9698

Please sign in to comment.