From 62ac37275f019ea2b621b710611be7d4d6beaa1b Mon Sep 17 00:00:00 2001 From: Martin Konicek Date: Wed, 21 Oct 2015 09:32:54 -0700 Subject: [PATCH] Actually revert https://github.com/facebook/react-native/commit/2608efccb6d81e2abc5571522455e641caf330ea Summary: We need to keep both babel and babel-core top level. `npm-shrinkwrap` defines that to be at the top level but that's only used when cloning the github repo. When publishing to npm and installing from npm, it has no effect (it's not published anywhere). This file assumes `babel-core` is at the top level: https://github.com/facebook/react-native/blob/master/packager/babelRegisterOnly.js public Reviewed By: davidaurelio Differential Revision: D2565054 fb-gh-sync-id: 7d6a079d88e09c1ba0478cf4041948e330da639a --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 68ef2a651..8c29c58db 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,7 @@ "dependencies": { "absolute-path": "^0.0.0", "babel": "^5.8.23", + "babel-core": "^5.8.23", "bser": "^1.0.2", "chalk": "^1.1.1", "connect": "^2.8.3",