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

Commit 152c2f7

Browse files
committed
Update all dependencies to latest versions.
1 parent 55114cc commit 152c2f7

File tree

3 files changed

+28
-32
lines changed

3 files changed

+28
-32
lines changed

.jscs.json

-5
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,5 @@
2929
"maximumLineLength": 140,
3030
"safeContextKeyword": "that",
3131
"requireDotNotation": true,
32-
"validateJSDoc": {
33-
"checkParamNames": true,
34-
"checkRedundantParams": true,
35-
"requireParamTypes": true
36-
},
3732
"excludeFiles": ["node_modules/**"]
3833
}

package.json

+26-25
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-webfont",
33
"description": "Ultimate SVG to webfont converter for Grunt.",
4-
"version": "1.7.2",
4+
"version": "2.0.0",
55
"homepage": "https://github.com/sapegin/grunt-webfont",
66
"author": {
77
"name": "Artem Sapegin",
@@ -10,7 +10,8 @@
1010
"contributors": [
1111
"Maxime Thirouin (http://moox.io/)",
1212
"Aaron Lampros (https://github.com/alampros)",
13-
"Cyrille Meichel (https://github.com/landru29)"
13+
"Cyrille Meichel (https://github.com/landru29)",
14+
"Justin Leider (https://github.com/jleider)"
1415
],
1516
"repository": {
1617
"type": "git",
@@ -25,39 +26,39 @@
2526
"test": "grunt --stack"
2627
},
2728
"engines": {
28-
"node": ">=0.12.0"
29+
"node": ">=10.0.0"
2930
},
3031
"dependencies": {
31-
"async": "~1.5.2",
32-
"chalk": "~1.1.1",
33-
"glob": "~7.0.0",
32+
"async": "~3.1.0",
33+
"chalk": "~3.0.0",
34+
"glob": "~7.1.6",
3435
"lodash": "~4.17.10",
3536
"memorystream": "~0.3.1",
3637
"mkdirp": "~0.5.1",
37-
"svg2ttf": "~2.1.1",
38-
"svgicons2svgfont": "~1.1.0",
39-
"svgo": "~0.6.1",
40-
"temp": "~0.8.3",
41-
"ttf2eot": "~1.3.0",
42-
"ttf2woff": "~1.3.0",
43-
"ttf2woff2": "~2.0.3",
44-
"underscore.string": "~3.2.3",
45-
"winston": "~2.1.1"
38+
"svg2ttf": "~4.3.0",
39+
"svgicons2svgfont": "~9.1.1",
40+
"svgo": "~1.3.2",
41+
"temp": "~0.9.1",
42+
"ttf2eot": "~2.0.0",
43+
"ttf2woff": "~2.0.1",
44+
"ttf2woff2": "~3.0.0",
45+
"underscore.string": "~3.3.5",
46+
"winston": "~3.2.1"
4647
},
4748
"devDependencies": {
48-
"grunt": "~0.4.5",
49-
"grunt-cli": "~0.1.13",
50-
"grunt-contrib-clean": "~1.0.0",
51-
"grunt-contrib-jshint": "~0.11.3",
52-
"grunt-contrib-nodeunit": "~0.4.1",
53-
"grunt-contrib-watch": "~0.6.1",
54-
"grunt-jscs": "~1.0.0",
55-
"load-grunt-tasks": "~3.4.0",
56-
"stylus": "~0.53.0",
49+
"grunt": "~1.0.4",
50+
"grunt-cli": "~1.3.2",
51+
"grunt-contrib-clean": "~2.0.0",
52+
"grunt-contrib-jshint": "~2.1.0",
53+
"grunt-contrib-nodeunit": "~2.0.0",
54+
"grunt-contrib-watch": "~1.1.0",
55+
"grunt-jscs": "~3.0.1",
56+
"load-grunt-tasks": "~5.1.0",
57+
"stylus": "~0.54.7",
5758
"xml2js": "~0.4.16"
5859
},
5960
"peerDependencies": {
60-
"grunt": ">=0.4.0"
61+
"grunt": ">=1.0.0"
6162
},
6263
"keywords": [
6364
"gruntplugin",

tasks/webfont.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ module.exports = function(grunt) {
5454
* Check for `dest` param on either target config or global options object
5555
*/
5656
if (_.isUndefined(params.dest) && _.isUndefined(options.dest)) {
57-
logger.warn('Required property ' + [this.name, this.target, 'dest'].join('.')
58-
+ ' or ' + [this.name, this.target, 'options.dest'].join('.') + ' missing.');
57+
logger.warn('Required property ' + [this.name, this.target, 'dest'].join('.') +
58+
' or ' + [this.name, this.target, 'options.dest'].join('.') + ' missing.');
5959
}
6060

6161
if (options.skip) {

0 commit comments

Comments
 (0)