From 82fad33af7dac32cd556eea35674aca4dc707f71 Mon Sep 17 00:00:00 2001 From: Martin Konicek Date: Tue, 20 Oct 2015 09:52:52 -0700 Subject: [PATCH] Breaking change: Remove redundant packager entry point Summary: We have too many ways to start the packager: - react-native start - npm start - ./packager/packager.sh - ./packager/launchPackager.command This removes yet another one. According to the [npm docs](https://docs.npmjs.com/files/package.json) this creates `/usr/local/bin/react-native-start`. Let's kill it. public Reviewed By: martinbigio Differential Revision: D2559953 fb-gh-sync-id: e3b41a0622e6168fe686cdf9c93714dbf02f5965 --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index 06f236661e367e..46c1093c315805 100644 --- a/package.json +++ b/package.json @@ -46,9 +46,6 @@ "lint": "eslint Examples/ Libraries/", "start": "./packager/packager.sh || true" }, - "bin": { - "react-native-start": "packager/packager.sh" - }, "dependencies": { "absolute-path": "^0.0.0", "babel-core": "^5.8.23",