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
28 lines
562 B
Plaintext
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": []
|
|
}
|