From 498f8f5b0574e248ebd2bad1619246b5e49a0c50 Mon Sep 17 00:00:00 2001 From: Flarnie Marchan Date: Mon, 14 Aug 2017 08:04:07 -0700 Subject: [PATCH] Require specific version of `uglify-js` **what is the change?:** Removed the '^' from the npm package requirement **why make this change?:** I am seeing failures in CI that show `uglify-js` is returning different output there from my local environment. To further debug this I'd like to run CI with the exact same version of `uglify-js` that I am using locally. **test plan:** push and see what CI does **issue:** https://github.com/facebook/react/issues/9589 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4c18b61bde474..86613d9225afa 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ "through2": "^2.0.0", "tmp": "~0.0.28", "typescript": "~1.8.10", - "uglify-js": "^2.8.29", + "uglify-js": "2.8.29", "yargs": "^6.3.0" }, "devEngines": {