Skip to content

Commit

Permalink
Update more deps (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff authored Feb 20, 2021
2 parents b8785aa + e7a6d59 commit 57256e0
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 40 deletions.
94 changes: 61 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"test": "grunt test"
},
"dependencies": {
"async": "^2.0.0",
"chalk": "^1.0.0",
"async": "^3.2.0",
"chalk": "^4.1.0",
"less": "^3.0.4",
"lodash": "^4.17.11"
"lodash": "^4.17.20"
},
"devDependencies": {
"grunt": "^1.3.0",
Expand Down
8 changes: 4 additions & 4 deletions tasks/less.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ module.exports = function(grunt) {
} else {
var allCss = compiled.join(options.compress ? '' : grunt.util.normalizelf(grunt.util.linefeed));

// Add a process step to modify the written CSS
if ( typeof options.process === 'function' ) {
allCss = options.process( allCss, destFile );
}
// Add a process step to modify the written CSS
if ( typeof options.process === 'function' ) {
allCss = options.process( allCss, destFile );
}

grunt.file.write(destFile, allCss);
grunt.verbose.writeln('File ' + chalk.cyan(destFile) + ' created');
Expand Down

0 comments on commit 57256e0

Please # to comment.