Skip to content

Commit

Permalink
Merge pull request #2 from Leko/v0.8.2
Browse files Browse the repository at this point in the history
V0.8.2
  • Loading branch information
Leko authored Mar 12, 2017
2 parents 394929b + af6bdcd commit 61c3d30
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
17 changes: 16 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
machine:
node:
version: 6.1.0
dependencies:
pre:
- git config user.name Leko
- git config user.email $NPM_EMAIL
override:
- npm run build
post:
- sudo apt-get install -y jq
test:
pre:
- npm run lint
post:
- npm run build
- bash <(curl -s https://codecov.io/bash)
deployment:
production:
branch: master
commands:
- echo -e "$NPM_USER\n$NPM_PASS\n$NPM_EMAIL" | npm login
- git tag $(jq -r .version package.json)
- git push origin $(jq -r .version package.json)
- npm publish
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "in-progress",
"version": "0.8.0",
"version": "0.8.2",
"description": "Prevent screen transition if any state changed.",
"main": "dist/inprogress.js",
"files": [
"dist/inprogress.js"
],
"scripts": {
"prepublish": "npm run build",
"build": "gulp build",
"lint": "standard --parser babel-eslint",
"test": "istanbul cover _mocha -- --require babel-register --recursive"
Expand Down

0 comments on commit 61c3d30

Please sign in to comment.