From 992d39f20deaa2471538c914faf481edcbcad595 Mon Sep 17 00:00:00 2001 From: Konstantin Raev Date: Tue, 15 Mar 2016 09:21:50 -0700 Subject: [PATCH] Npm publish Summary:This work allows automated release deployment. Previous semi-automation lived in release.sh and I split it into two pieces: - test-manual-e2e.sh - that just tests that current commit is buildable and makes a quick e2e installation for manual testing - publish-npm.js - that makes publish based on what current branch and tags are on commit that is tested/deployed by CI This simplified `Releases.md` guide and requires you to just run ``` git checkout -b 0.22-stable git tag v0.22.0-rc git push origin 0.22-stable --tags ``` to have a successful npm release. Closes https://github.com/facebook/react-native/pull/6453 Reviewed By: mkonicek Differential Revision: D3047938 Pulled By: bestander fb-gh-sync-id: dbebf4c3a0bc2c2a0ef75c54595ab5654f91b8ea shipit-source-id: dbebf4c3a0bc2c2a0ef75c54595ab5654f91b8ea --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d5ad363780f..7bd35867c47 100644 --- a/package.json +++ b/package.json @@ -186,6 +186,7 @@ "flow-bin": "0.22.0", "jest-cli": "0.9.2", "portfinder": "0.4.0", - "react": "^0.14.5" + "react": "^0.14.5", + "shelljs": "^0.6.0" } }