Skip to content

Commit

Permalink
build: enable sem-ver (#29)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Added `queue()` support.
Bumping to 1.0.0 as we move on to use sem-ver
  • Loading branch information
unional committed Feb 6, 2018
1 parent 82ec1a3 commit b43c4bb
Show file tree
Hide file tree
Showing 7 changed files with 2,011 additions and 97 deletions.
32 changes: 19 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,32 @@
language: node_js

cache:
directories:
- ~/.npm
notifications:
email:
on_success: never
on_failure: change

email: false
node_js:
- "stable"

- '9'
- '8'
- '6'
branches:
only:
- "master"
- master
- /^greenkeeper.*$/

before_install:
- npm install -g greenkeeper-lockfile@1
- ./scripts/run-on-node-version.sh "npm install -g greenkeeper-lockfile@1"

before_script: greenkeeper-lockfile-update
before_script:
- ./scripts/run-on-node-version.sh "greenkeeper-lockfile-update"

script:
- npm run verify

after_script: greenkeeper-lockfile-upload

after_success:
- npm install coveralls && npm run coveralls
- npm install -g travis-deploy-once@4
- travis-deploy-once "npm run semantic-release"
- ./scripts/run-on-node-version.sh "npm install --no-save coveralls && npm run coveralls"
- ./scripts/run-on-node-version.sh "npm install --no-save codecov && npm run codecov"

after_script:
- ./scripts/run-on-node-version.sh "greenkeeper-lockfile-upload"
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
[![NPM downloads][downloads-image]][downloads-url]
[![Build status][travis-image]][travis-url]
[![Coverage Status][coveralls-image]][coveralls-url]
[![Greenkeeper badge](https://badges.greenkeeper.io/unional/unpartial.svg)](https://greenkeeper.io/)

[![Greenkeeper][greenkeeper-image]][greenkeeper-url]
[![Semantic Release][semantic-release-image]][semantic-release-url]

[![Visual Studio Code][vscode-image]][vscode-url]
[![Wallaby.js][wallaby-image]][wallaby-url]

EventEmitter in FSA style.

Expand Down Expand Up @@ -238,3 +243,11 @@ npm run watch
[travis-url]: https://travis-ci.org/unional/fsa-emitter?branch=master
[coveralls-image]: https://coveralls.io/repos/github/unional/fsa-emitter/badge.svg
[coveralls-url]: https://coveralls.io/github/unional/fsa-emitter
[greenkeeper-image]:https://badges.greenkeeper.io/unional/komondor.svg
[greenkeeper-url]:https://greenkeeper.io/
[semantic-release-image]:https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
[semantic-release-url]:https://github.com/semantic-release/semantic-release
[wallaby-image]:https://img.shields.io/badge/wallaby.js-configured-green.svg
[wallaby-url]:https://wallabyjs.com
[vscode-image]:https://img.shields.io/badge/vscode-ready-green.svg
[vscode-url]:https://code.visualstudio.com/
Loading

0 comments on commit b43c4bb

Please sign in to comment.