From b9e7c07ee74173092e7d581f3c171dbd0ed84e20 Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Tue, 15 Sep 2015 17:45:42 -0700 Subject: [PATCH] Tweaking the ulimit is no longer necessary with newer versions of Node --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e0a679a2bbcf..f783bf9b61a3b 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "main": "lib/Relay.js", "repository": "facebook/relay", "scripts": { - "build": "[ $(ulimit -n) -lt 4096 ] && ulimit -n 4096; gulp", + "build": "gulp", "prepublish": "npm run build", "test": "f() { EXIT=0; npm run typecheck || EXIT=$?; NODE_ENV=test jest $@ || EXIT=$?; exit $EXIT; }; f", "typecheck": "flow check src/",