Skip to content

Commit 02910b1

Browse files
committed
Update npm-dependencies, sort jshintrc alphabetically
1 parent 989b9bf commit 02910b1

File tree

5 files changed

+32
-30
lines changed

5 files changed

+32
-30
lines changed

.editorconfig

+1-5
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ charset = utf-8
1010
trim_trailing_whitespace = true
1111
insert_final_newline = true
1212

13-
[.htaccess]
14-
indent_style = space
15-
indent_size = 2
16-
17-
[*.json]
13+
[.htaccess, *.json]
1814
indent_style = space
1915
indent_size = 2

.jshintrc

+14-17
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,32 @@
11
{
2-
"node": true,
3-
"browser": true,
4-
"esnext": true,
52
"bitwise": true,
3+
"browser": true,
64
"camelcase": true,
75
"curly": true,
86
"eqeqeq": true,
7+
"esnext": true,
98
"immed": true,
9+
"jquery": true,
1010
"latedef": true,
1111
"newcap": true,
1212
"noarg": true,
13-
"undef": true,
14-
"unused": true,
13+
"node": true,
14+
"smarttabs": true,
1515
"strict": true,
1616
"trailing": true,
17-
"smarttabs": true,
17+
"undef": true,
18+
"unused": true,
1819

1920
"globals": {
20-
"jQuery": true,
21-
"$": true,
22-
23-
"module": true,
24-
"require": true,
25-
"requirejs": true,
21+
"afterEach": true,
22+
"beforeEach": true,
2623
"define": true,
27-
28-
"sinon": true,
2924
"describe": true,
30-
"it": true,
3125
"expect": true,
32-
"beforeEach": true,
33-
"afterEach": true
26+
"it": true,
27+
"module": true,
28+
"require": true,
29+
"requirejs": true,
30+
"sinon": true
3431
}
3532
}

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
### HEAD
4+
* Update npm-dependencies, sort jshintrc alphabetically
45
* Remove unnecessary comma
56

67
### v0.1.0 (2013-12-10)

README.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
# INIT HTMLMin
22

3-
A plugin for [INIT](http://use-init.com/) using [grunt-contrib-htmlmin](https://github.com/gruntjs/grunt-contrib-htmlmin) to minimize your HTML.
3+
A plugin for [INIT](http://use-init.com/) using
4+
[grunt-contrib-htmlmin](https://github.com/gruntjs/grunt-contrib-htmlmin) to
5+
minimize your HTML.
46

57
[![devDependency Status](https://david-dm.org/use-init/init-htmlmin/dev-status.png)](https://david-dm.org/use-init/init-htmlmin#info=devDependencies)
68

79
## Installation
8-
You can add this plugin to INIT by copying over the file `config/htmlmin.js` to `tasks/options` and run
10+
You can add this plugin to INIT by copying over the file `config/htmlmin.js` to
11+
`tasks/options` and run
912

1013
npm install --save-dev grunt-contrib-htmlmin
1114

1215
in your main project's root directory.
1316

14-
You need to add an object in your `config.js` file called `htmlmin` to describe the files to be minimized:
17+
You need to add an object in your `config.js` file called `htmlmin` to describe
18+
the files to be minimized:
1519

1620
{
1721
'source.html': 'target.html'
1822
}
1923

2024
## Contribute
21-
Please help making this project better and [contribute](CONTRIBUTING.md) with your knowledge.
25+
Please help making this project better and [contribute](CONTRIBUTING.md) with
26+
your knowledge.
2227

2328
## Development
24-
This package is developed as part of the [INIT project](https://github.com/use-init).
29+
This package is developed as part of the
30+
[INIT project](https://github.com/use-init).
2531

2632
## License
27-
Please be aware of the licenses of each component we use in this project. Everything else that has been developed by the contributions to this project is under [MIT License](LICENSE.md).
33+
Please be aware of the licenses of each component we use in this project.
34+
Everything else that has been developed by the contributions to this project is
35+
under [MIT License](LICENSE.md).

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"dependencies": {},
1616
"devDependencies": {
1717
"matchdep": "0.3.0",
18-
"grunt": "0.4.2",
19-
"grunt-contrib-htmlmin": "~0.1.3"
18+
"grunt": "0.4.5",
19+
"grunt-contrib-htmlmin": "0.3.0"
2020
},
2121
"keywords": []
2222
}

0 commit comments

Comments
 (0)