Skip to content
This repository has been archived by the owner on Jun 18, 2019. It is now read-only.

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mdreizin committed Oct 23, 2015
2 parents 9fc68ad + 872e796 commit 02600a4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ node_js:
- '4.1'
- '4.0'
- '0.12'
- '0.11'
- 'iojs'
matrix:
fast_finish: true
Expand All @@ -20,15 +19,10 @@ branches:
- master
except:
- gh-pages
before_install:
- npm install
before_script:
- npm dedupe
- npm prune
script:
- npm run clean
- npm run cover
after_success:
- npm run doc
- npm run codeclimate
- npm run semantic-release
after_script: .travis/after-all.sh
8 changes: 8 additions & 0 deletions .travis/after-all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
declare exitCode;
$(npm bin)/travis-after-all
exitCode=$?
if [ $exitCode -eq 0 ]; then
npm run codeclimate;
npm run semantic-release;
fi
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ environment:
- nodejs_version: 4.0
- nodejs_version: 1.0
- nodejs_version: 0.12
- nodejs_version: 0.11
platform:
- x86
- x64
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"cover": "istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec",
"codeclimate": "codeclimate-test-reporter < ./coverage/lcov.info",
"doc": "gulp docs",
"postpublish": "publish-latest -a package.json README.md docs/API.md",
"postpublish": "publish-latest -a 'package.json README.md docs/API.md'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
Expand Down Expand Up @@ -47,10 +47,11 @@
"publish-latest": "^1.1.2",
"run-sequence": "^1.1.0",
"semantic-release": "^4.3.5",
"travis-after-all": "^1.4.3",
"webpack": "^1.12.2"
},
"dependencies": {
"lodash": "^3.10.1"
},
"version": "1.1.0"
"version": "1.1.1"
}

0 comments on commit 02600a4

Please sign in to comment.