Skip to content

Commit e1d6368

Browse files
committedJun 9, 2018
Require Node.js 6 and Grunt 1
1 parent f7a2a05 commit e1d6368

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed
 

‎.gitattributes

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
* text=auto
2-
*.js text eol=lf
1+
* text=auto eol=lf

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: node_js
22
node_js:
3+
- '10'
34
- '8'
45
- '6'
5-
- '4'

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "sindresorhus.com"
1111
},
1212
"engines": {
13-
"node": ">=4"
13+
"node": ">=6"
1414
},
1515
"scripts": {
1616
"test": "grunt"
@@ -38,6 +38,6 @@
3838
"grunt-shell": "^2.1.0"
3939
},
4040
"peerDependencies": {
41-
"grunt": ">=0.4.0"
41+
"grunt": ">=1"
4242
}
4343
}

‎readme.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@
1111
$ npm install --save-dev grunt-eslint
1212
```
1313

14+
<a href="https://www.patreon.com/sindresorhus">
15+
<img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" width="160">
16+
</a>
17+
1418

1519
## Usage
1620

1721
```js
18-
require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks
22+
require('load-grunt-tasks')(grunt);
1923

2024
grunt.initConfig({
2125
eslint: {
@@ -59,7 +63,7 @@ grunt.initConfig({
5963

6064
## Options
6165

62-
See the [ESLint options](http://eslint.org/docs/developer-guide/nodejs-api#cliengine).
66+
See the [ESLint options](https://eslint.org/docs/developer-guide/nodejs-api#cliengine).
6367

6468
In addition the following options are supported:
6569

0 commit comments

Comments
 (0)
Please sign in to comment.