From 5c25537f6fe7a6176a66b50eca8c26d9850c8b5a Mon Sep 17 00:00:00 2001 From: Dennis Snell Date: Tue, 5 Jul 2016 14:13:30 -0700 Subject: [PATCH] Pin package dependencies to specific versions In #1565 I ran into an issue where changes were brought in to the minified javascript bundle that were unrelated to the changes made in the PR. This was due to NPM packages which were pulled in under the compatability version spec `pkg: ^1.2.3` but which differed from the versions used to build the current release in `dev`. This PR only pins the versions of the three libraries that interfered with #1563, but it might be worthwhile to ammend it and pin all of the dependency versions to ensure that all development environments are building with the same code. Cheers! --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index d6b50f1eb..803864add 100644 --- a/package.json +++ b/package.json @@ -10,13 +10,13 @@ "async": "^0.9.0", "colorbrewer": "0.0.2", "custom-event": "^1.0.0", - "d3": "^3.5.5", + "d3": "3.5.16", "document-register-element": "^0.5.3", "immutable": "^3.7.6", - "jquery": "^1.11.3", + "jquery": "1.11.3", "list.js": "^1.1.1", "lodash": "^3.10.1", - "queue-async": "^1.0.7", + "queue-async": "1.0.7", "topojson": "git://github.com/mbostock/topojson.git#oversize", "webpack": "*" },