Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquerie committed Nov 2, 2018
1 parent 206b6cf commit 78e385f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"async": "^1.5.2",
"htmlprocessor": "^0.2.4",
"lodash.clonedeep": "^4.3.2"
"lodash": "^4.17.5"
},
"devDependencies": {
"grunt": "^1.0.1",
Expand Down
4 changes: 2 additions & 2 deletions tasks/processhtml.js
Expand Up @@ -9,7 +9,7 @@

'use strict';

var cloneDeep = require('lodash.clonedeep');
var lodash = require('lodash');
var path = require('path');
var async = require('async');

Expand Down Expand Up @@ -56,7 +56,7 @@ module.exports = function (grunt) {
var content = html.process(file);

if (options.process) {
content = html.template(content, cloneDeep(html.data), options.templateSettings);
content = html.template(content, lodash.cloneDeep(html.data), options.templateSettings);
}

result.push(content);
Expand Down

0 comments on commit 78e385f

Please sign in to comment.