Files
frontend-app-gradebook/.releaserc
Alex Dusenbery 23e781d5d6 feat(packaging):
Update the repo so it will publish to npm to enable it to be install on other repos

Also adjust the tests and coverall commands to accommodate the absence of tests
2018-11-06 08:38:25 -05:00

28 lines
562 B
Plaintext

{
"branch": "master",
"tagFormat": "v${version}",
"verifyConditions": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": {
"path": "dist/*"
}
}
],
"analyzeCommits": "@semantic-release/commit-analyzer",
"generateNotes": "@semantic-release/release-notes-generator",
"prepare": "@semantic-release/npm",
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/github",
"assets": {
"path": "dist/*"
}
}
],
"success": [],
"fail": []
}