Skip to content

Commit 98c1b28

Browse files
committed
Bump version to 0.1.3
1 parent b4e031d commit 98c1b28

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Then, add it to your `gulpfile.js`:
1515
var csslint = require('gulp-csslint');
1616

1717
gulp.task('css', function() {
18-
gulp.src('./client/css/*.css')
18+
gulp.src('client/css/*.css')
1919
.pipe(csslint())
2020
.pipe(csslint.reporter());
2121
});
@@ -31,7 +31,7 @@ Type: `Object`
3131
You can pass rule configuration as an object. See the [list of rules by ID on the CSSLint wiki](https://github.com/stubbornella/csslint/wiki/Rules-by-ID) for valid rule IDs.
3232

3333
```javascript
34-
gulp.src('./client/css/*.css')
34+
gulp.src('client/css/*.css')
3535
.pipe(csslint({
3636
'shorthand': false
3737
}))
@@ -46,7 +46,7 @@ Type: `String`
4646
You can also pass the path to your csslintrc file instead of a rule configuration object.
4747

4848
```javascript
49-
gulp.src('./client/css/*.css')
49+
gulp.src('client/css/*.css')
5050
.pipe(csslint('csslintrc.json'))
5151
.pipe(csslint.reporter());
5252
```
@@ -79,7 +79,7 @@ var customReporter = function(file) {
7979
};
8080

8181
gulp.task('lint', function() {
82-
gulp.files('./lib/*.js')
82+
gulp.files('lib/*.js')
8383
.pipe(csslint())
8484
.pipe(csslint.reporter(customReporter));
8585
});

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-csslint",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "CSSLint plugin for gulp",
55
"main": "index.js",
66
"dependencies": {
@@ -27,5 +27,8 @@
2727
"license": "MIT",
2828
"bugs": {
2929
"url": "https://github.com/lazd/gulp-csslint/issues"
30+
},
31+
"engines": {
32+
"node": ">=0.6"
3033
}
3134
}

0 commit comments

Comments
 (0)