Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- run: echo $CIRCLE_SHA1 > .circle-sha
- run: echo "Install Dependencies"
- run: npm i
- run: npm i -C www
- run: echo "Run Tests"
- run: npm test
- run: if [ $CIRCLE_BRANCH = 'master' ]; then npm run coverage; fi
Expand All @@ -38,6 +39,20 @@ jobs:
command: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc
npm publish dist
npm run deploy-docs

deploy-docs:
docker:
- image: node:8

steps:
- run: echo $CIRCLE_SHA1 > .circle-sha
- restore_cache:
keys:
- project-{{ checksum ".circle-sha" }}
- run:
command: |
npm run deploy-docs

workflows:
version: 2
Expand All @@ -56,3 +71,12 @@ workflows:
ignore: /.*/
tags:
only: /\d+(\.\d+){2}(-(alpha|beta)(\d+)?)?/

- deploy-docs:
requires:
- deploy
filters:
branches:
ignore: /.*/
tags:
only: /\d+(\.\d+){2}/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
### Updated
- Rewritten with React 16 guidelines (remove deprecated life cycle hooks)
- Update docs configuration and layout
- Update dependencies

## 0.2.8 - 2018-01-23
### Fixed
Expand Down
Loading