From 65caa28f25a3762fd96e59c27b1449f8f9f2a0bc Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Wed, 16 Aug 2017 15:51:42 +1000 Subject: [PATCH] Update minimatch dependency `npm install` was giving the warning `npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue` We avoid the warning by using a recent minimatch version. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 65b5c9bb..f97c8b06 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "*.min.js.map" ], "devDependencies": { + "minimatch": "^3.0.4", "mocha": "1.21.4", "chai": "^1.9.1", "grunt": "~0.4.5",