Remove prepack script from each plugin

Summary: Removed back "prepack" script from every plugin package to keep it simple. Instead we will use `build-plugin` command defined in the root package.json (see next diff in the stack).

Reviewed By: mweststrate

Differential Revision: D22160252

fbshipit-source-id: cffb5df65b89df3fe390c051da0df797b3d16d2d
This commit is contained in:
Anton Nikolaev
2020-06-22 08:14:29 -07:00
committed by Facebook GitHub Bot
parent b69996ca50
commit 4219df6a93
19 changed files with 8 additions and 53 deletions

View File

@@ -18,7 +18,9 @@
},
"scripts": {
"lint": "flipper-pkg lint",
"prepack": "flipper-pkg lint && flipper-pkg bundle"
"build": "flipper-pkg bundle",
"watch": "flipper-pkg bundle --watch",
"prepack": "flipper-pkg lint && flipper-pkg bundle --production"
},
"peerDependencies": {
"flipper": "0.47.0"