Fix starting dev Flipper without bundled plugins

Summary: --no-embedded-plugins does not seem to exist. Replaced with --no-bundled-plugins which removes plugins from defaultPlugins/idex.tsx (as in prod).

Reviewed By: antonk52

Differential Revision: D34445364

fbshipit-source-id: e52c2e327bf43a3f682b6d9e18315e6ecadad5d8
This commit is contained in:
Andrey Goncharov
2022-02-28 03:50:34 -08:00
committed by Facebook GitHub Bot
parent 3ec5b56263
commit b82cdfb664

View File

@@ -151,7 +151,7 @@
"rm-watches": "watchman watch-del-all", "rm-watches": "watchman watch-del-all",
"start": "yarn dev-server --inspect=9229", "start": "yarn dev-server --inspect=9229",
"start:break": "yarn dev-server --inspect-brk=9229", "start:break": "yarn dev-server --inspect-brk=9229",
"start:no-embedded-plugins": "yarn start --no-embedded-plugins", "start:no-bundled-plugins": "yarn start --no-bundled-plugins",
"docs": "cd ../website && yarn start", "docs": "cd ../website && yarn start",
"test": "cross-env TZ=Pacific/Pohnpei jest", "test": "cross-env TZ=Pacific/Pohnpei jest",
"test:debug": "yarn build:tsc && cross-env TZ=Pacific/Pohnpei node --inspect node_modules/.bin/jest --runInBand", "test:debug": "yarn build:tsc && cross-env TZ=Pacific/Pohnpei node --inspect node_modules/.bin/jest --runInBand",