Skip to content

Commit 96e37be

Browse files
author
Maxime LUCE
committed
Clean code, update dependences and release history
1 parent 1df1d39 commit 96e37be

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,7 @@ There 5 types of processors:
223223
* Automatically adapt generated `link` tag for less files.
224224
* 0.5.1
225225
* Fix issue in linefeed simplification
226+
* 0.5.2
227+
* Fix issue in relative path management
228+
* Remove deprecated undercore reference and replace by lodash dependency
229+
* Fix deep array flattening for Node.JS >= 4

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"description": "Grunt HTML Builder - Appends scripts and styles, Removes debug parts, append html partials, Template options",
44
"version": "0.5.2",
55
"homepage": "https://github.com/spatools/grunt-html-build.git",
6+
"license": "MIT",
67
"author": {
78
"name": "SPA Tools",
89
"url": "http://github.com/spatools/"
@@ -18,8 +19,8 @@
1819
"grunt": "^0.4.5"
1920
},
2021
"dependencies": {
21-
"js-beautify": "^1.5.5",
22-
"lodash":"^3.10.0"
22+
"js-beautify": "^1.5.10",
23+
"lodash":"^3.10.1"
2324
},
2425
"keywords": [
2526
"gruntplugin",

tasks/build-html.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ module.exports = function (grunt) {
202202
}
203203
else {
204204
var destDir = options.relative && isFileRegex.test(options.dest) ? path.dirname(options.dest) : options.dest;
205-
console.log(options.dest, destDir);
206205

207206
return options.files.map(function (f) {
208207
var url = options.relative ? path.relative(destDir, f) : f;

0 commit comments

Comments
 (0)