Skip to content

Commit

Permalink
ver. 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
光弘 committed Jun 8, 2017
1 parent 73d1b6d commit 828202a
Show file tree
Hide file tree
Showing 11 changed files with 602 additions and 553 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"extends": "airbnb",
"plugins": [
"react"
],
"env": {
"browser": true,
"mocha": true
},
"rules": {
"import/no-extraneous-dependencies": "off",
"react/jsx-no-bind": "off",
"jsx-a11y/label-has-for": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
],
"react/no-unused-prop-types": "off",
"react/forbid-prop-types": "off",
"jsx-a11y/no-static-element-interactions": "off"
}
}
28 changes: 0 additions & 28 deletions .jshitrc

This file was deleted.

15 changes: 12 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ language: node_js

sudo: false

addons:
apt:
packages:
- xvfb

notification:
email:
- [email protected]

node_js:
- 4.0.0
- 6.9.0

before_install:
- |
Expand All @@ -17,6 +22,11 @@ before_install:
exit
fi
phantomjs --version
install:
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- npm install


script:
- |
Expand All @@ -25,7 +35,6 @@ script:
else
npm run $TEST_TYPE
fi
env:
matrix:
- TEST_TYPE=test
Expand All @@ -34,4 +43,4 @@ env:

matrix:
allow_failures:
- env: "TEST_TYPE=saucelabs"
- env: "TEST_TYPE=saucelabs"
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

---

## 2.1.4

* `CHANGED` upgrade scaffold
* `FIXED` render an empty container if tips is empty
* `CHANGED` eslint `uploader.js` (70%), `locale.js` (100%)

## 2.1.3

* `FIXED` filename overflow style bug
Expand Down
259 changes: 0 additions & 259 deletions demo/index.js

This file was deleted.

Loading

0 comments on commit 828202a

Please sign in to comment.