Skip to content

Commit

Permalink
feat(build): semantic release messages scan
Browse files Browse the repository at this point in the history
  • Loading branch information
DEgITx committed Feb 4, 2018
1 parent 5a86c51 commit af591e8
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"publish": [
"@semantic-release/npm",
{
"path": "@semantic-release/exec",
"cmd": "yarn build --linux --win --mac"
},
"@semantic-release/github"
],
"assets": "dist/*",
"npmPublish": false
}
29 changes: 29 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

jobs:
include:
- if: branch = master
os: osx
osx_image: xcode9.0
language: node_js
node_js: "8"

cache:
yarn: true
directories:
- node_modules

before_install: git pull

before_install:
- brew install rpm
- brew install dpkg
- brew install jq

script:
- yarn test

deploy:
provider: script
skip_cleanup: true
script:
- npx travis-deploy-once "npx semantic-release@13"
35 changes: 35 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"@babel/preset-env": "^7.0.0-beta.38",
"@babel/preset-react": "^7.0.0-beta.38",
"@babel/preset-stage-0": "^7.0.0-beta.38",
"@semantic-release/exec": "^2.0.0",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"chai": "^4.1.0",
Expand Down

0 comments on commit af591e8

Please sign in to comment.