Skip to content

Commit

Permalink
Merge bfe5ebd into 580398a
Browse files Browse the repository at this point in the history
  • Loading branch information
zenflow committed Feb 20, 2019
2 parents 580398a + bfe5ebd commit 0efe754
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
- stage: test
script: npm test && cat ./coverage/lcov.info | coveralls
- stage: release
script: npm run build && semantic-release
script: semantic-release
notifications:
email:
on_success: never
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -22,7 +22,8 @@
"fix:ts": "npm run lint:ts --fix",
"test-only": "jest --ci",
"test": "npm run check-dts && npm run lint && npm run test-only",
"build": "rollup --config"
"build": "rollup --config",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
Expand Down
13 changes: 2 additions & 11 deletions release.config.js
@@ -1,18 +1,9 @@
module.exports = {
debug: true,
verifyConditions: [
plugins: [
'@semantic-release/changelog',
'@semantic-release/npm',
'@semantic-release/git',
'@semantic-release/github',
],
prepare: [
'@semantic-release/changelog',
'@semantic-release/npm',
{
path: '@semantic-release/git',
assets: ['package.json', 'CHANGELOG.md'],
message: 'chore(release): ${nextRelease.version} [skip ci]', // eslint-disable-line no-template-curly-in-string
},
],
publish: ['@semantic-release/npm', '@semantic-release/github'],
}

0 comments on commit 0efe754

Please sign in to comment.