Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Commit

Permalink
Update all dependencies to latest versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jleider committed Dec 30, 2019
1 parent 55114cc commit 152c2f7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 32 deletions.
5 changes: 0 additions & 5 deletions .jscs.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,5 @@
"maximumLineLength": 140,
"safeContextKeyword": "that",
"requireDotNotation": true,
"validateJSDoc": {
"checkParamNames": true,
"checkRedundantParams": true,
"requireParamTypes": true
},
"excludeFiles": ["node_modules/**"]
}
51 changes: 26 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-webfont",
"description": "Ultimate SVG to webfont converter for Grunt.",
"version": "1.7.2",
"version": "2.0.0",
"homepage": "https://github.com/sapegin/grunt-webfont",
"author": {
"name": "Artem Sapegin",
Expand All @@ -10,7 +10,8 @@
"contributors": [
"Maxime Thirouin (http://moox.io/)",
"Aaron Lampros (https://github.com/alampros)",
"Cyrille Meichel (https://github.com/landru29)"
"Cyrille Meichel (https://github.com/landru29)",
"Justin Leider (https://github.com/jleider)"
],
"repository": {
"type": "git",
Expand All @@ -25,39 +26,39 @@
"test": "grunt --stack"
},
"engines": {
"node": ">=0.12.0"
"node": ">=10.0.0"
},
"dependencies": {
"async": "~1.5.2",
"chalk": "~1.1.1",
"glob": "~7.0.0",
"async": "~3.1.0",
"chalk": "~3.0.0",
"glob": "~7.1.6",
"lodash": "~4.17.10",
"memorystream": "~0.3.1",
"mkdirp": "~0.5.1",
"svg2ttf": "~2.1.1",
"svgicons2svgfont": "~1.1.0",
"svgo": "~0.6.1",
"temp": "~0.8.3",
"ttf2eot": "~1.3.0",
"ttf2woff": "~1.3.0",
"ttf2woff2": "~2.0.3",
"underscore.string": "~3.2.3",
"winston": "~2.1.1"
"svg2ttf": "~4.3.0",
"svgicons2svgfont": "~9.1.1",
"svgo": "~1.3.2",
"temp": "~0.9.1",
"ttf2eot": "~2.0.0",
"ttf2woff": "~2.0.1",
"ttf2woff2": "~3.0.0",
"underscore.string": "~3.3.5",
"winston": "~3.2.1"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-jshint": "~0.11.3",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-jscs": "~1.0.0",
"load-grunt-tasks": "~3.4.0",
"stylus": "~0.53.0",
"grunt": "~1.0.4",
"grunt-cli": "~1.3.2",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-jshint": "~2.1.0",
"grunt-contrib-nodeunit": "~2.0.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-jscs": "~3.0.1",
"load-grunt-tasks": "~5.1.0",
"stylus": "~0.54.7",
"xml2js": "~0.4.16"
},
"peerDependencies": {
"grunt": ">=0.4.0"
"grunt": ">=1.0.0"
},
"keywords": [
"gruntplugin",
Expand Down
4 changes: 2 additions & 2 deletions tasks/webfont.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ module.exports = function(grunt) {
* Check for `dest` param on either target config or global options object
*/
if (_.isUndefined(params.dest) && _.isUndefined(options.dest)) {
logger.warn('Required property ' + [this.name, this.target, 'dest'].join('.')
+ ' or ' + [this.name, this.target, 'options.dest'].join('.') + ' missing.');
logger.warn('Required property ' + [this.name, this.target, 'dest'].join('.') +
' or ' + [this.name, this.target, 'options.dest'].join('.') + ' missing.');
}

if (options.skip) {
Expand Down

0 comments on commit 152c2f7

Please sign in to comment.