From b82cdfb66410f708848dfb95b0bfaca41209afbb Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Mon, 28 Feb 2022 03:50:34 -0800 Subject: [PATCH] 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 --- desktop/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/package.json b/desktop/package.json index 218cf9adf..16a55b0d6 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -151,7 +151,7 @@ "rm-watches": "watchman watch-del-all", "start": "yarn dev-server --inspect=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", "test": "cross-env TZ=Pacific/Pohnpei jest", "test:debug": "yarn build:tsc && cross-env TZ=Pacific/Pohnpei node --inspect node_modules/.bin/jest --runInBand",