Skip to content

Commit a473b45

Browse files
committed
Merged
2 parents 2487d29 + 8dce1e0 commit a473b45

5 files changed

Lines changed: 12 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
node_modules/
33
.DS_Store
44
test/
5+
npm-debug.log

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: node_js
22
node_js:
3+
- "9"
4+
- "8"
35
- "6"
4-
- "6.1"
5-
- "5.11"
66
before_script:
77
- npm install -g gulp
88
script: gulp

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Animate.css [![GitHub release](https://img.shields.io/github/release/daneden/animate.css.svg)](https://github.com/daneden/animate.css/releases) [![Build Status](https://travis-ci.org/WarenGonzaga/animate.css.svg?branch=master)](https://travis-ci.org/WarenGonzaga/animate.css) [![devDependencies Status](https://david-dm.org/WarenGonzaga/animate.css/dev-status.svg)](https://david-dm.org/WarenGonzaga/animate.css?type=dev) [![chat](https://img.shields.io/badge/chat-gitter-green.svg)](https://gitter.im/animate-css/Lobby)
1+
# Animate.css [![GitHub release](https://img.shields.io/github/release/daneden/animate.css.svg)](https://github.com/daneden/animate.css/releases) [![CDNJS](https://img.shields.io/cdnjs/v/animate.css.svg)](https://cdnjs.com/libraries/animate.css) [![Build Status](https://travis-ci.org/WarenGonzaga/animate.css.svg?branch=master)](https://travis-ci.org/WarenGonzaga/animate.css) [![devDependencies Status](https://david-dm.org/WarenGonzaga/animate.css/dev-status.svg)](https://david-dm.org/WarenGonzaga/animate.css?type=dev) [![chat](https://img.shields.io/badge/chat-gitter-green.svg)](https://gitter.im/animate-css/Lobby)
22

33
_Just-add-water CSS animation_
44

@@ -143,7 +143,7 @@ $.fn.extend({
143143
}
144144
});
145145
return this;
146-
},
146+
}
147147
});
148148
```
149149

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var opts = {
2424
concatName: 'animate.css',
2525

2626
autoprefixer: {
27-
browsers: ['> 1%, last 2 versions, Firefox ESR'],
27+
browsers: ['> 1%', 'last 2 versions', 'Firefox ESR'],
2828
cascade: false,
2929
},
3030

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,19 @@
2020
}
2121
},
2222
"devDependencies": {
23-
"autoprefixer": "^6.3.2",
23+
"autoprefixer": "^7.1.6",
2424
"cssnano": "^3.5.1",
2525
"eslint": "^4.11.0",
26-
"gulp": "^3.9.0",
26+
"gulp": "^3.9.1",
2727
"gulp-concat": "^2.6.0",
2828
"gulp-header": "^1.7.1",
29-
"gulp-postcss": "^6.1.0",
29+
"gulp-postcss": "^7.0.0",
3030
"gulp-rename": "^1.2.2",
3131
"gulp-util": "^3.0.7",
32+
"husky": "^0.14.3",
33+
"lint-staged": "^6.0.0",
3234
"prettier": "^1.8.2",
33-
"run-sequence": "^1.1.5"
35+
"run-sequence": "^2.2.0"
3436
},
3537
"lint-staged": {
3638
"*.{js,json,md,css}": ["prettier --write", "git add"]

0 commit comments

Comments
 (0)