From 8ce195ed28f819b3d726bab2ff4780faf71b5d84 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 23 Feb 2018 12:24:46 -0800 Subject: [PATCH] Use ~ to install node-mapnik This will protect your module from automatically upgrading to node-mapnik v3.7.0 (when it is published). This in turn will protect your users from breakages if they are running windows. Refs mapnik/node-mapnik#848 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8264bd4..c3dcff2 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "async": "^2.4.0", "express": "^4.14.0", "geojson-bounds": "^1.0.1", - "mapnik": "^3.5.14", + "mapnik": "~3.5.14", "mkdirp": "^0.5.1", "pg": "^7.3.0", "progress": "^2.0.0",