Skip to content

Commit b860f93

Browse files
committed
Update md5 and css-loader dependencies
Also put dependency management badge on README.md
1 parent 5206050 commit b860f93

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
A boilerplate for a single page app using [webpack][webpack_link]
44

5+
[![Dependency
6+
Status](https://david-dm.org/nihey/webpack-single-page-boilerplate.png)](https://david-dm.org/nihey/webpack-single-page-boilerplate)
7+
58
# Why should I use it
69

710
So far, this is the best way I found to build files like `index.html` into

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
"author": "Nihey Takizawa <nihey.takizawa@gmail.com>",
1616
"license": "MIT",
1717
"dependencies": {
18-
"MD5": "^1.2.2",
1918
"babel-core": "^5.6.15",
2019
"babel-loader": "^5.3.1",
2120
"cheerio": "^0.19.0",
22-
"css-loader": "^0.15.2",
21+
"css-loader": "^0.16.0",
2322
"extract-text-webpack-plugin": "^0.8.2",
2423
"file-loader": "^0.8.4",
2524
"html-minifier": "^0.7.2",
2625
"img-loader": "^1.1.0",
2726
"json-loader": "^0.5.2",
2827
"less": "^2.5.1",
2928
"less-loader": "^2.2.0",
29+
"md5": "^2.0.0",
3030
"node-libs-browser": "^0.5.2",
3131
"style-loader": "^0.12.3",
3232
"webpack": "^1.10.1"

plugins/html-plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* near future.
33
*/
44
var $ = require('cheerio'),
5-
md5 = require('MD5'),
5+
md5 = require('md5'),
66
htmlMinify = require('html-minifier').minify,
77
fs = require('fs'),
88
path = require('path');

0 commit comments

Comments
 (0)