Device plugin management (3/n): unbundle less used device plugins from Flipper Insiders builds
Summary: Now as we can install device plugins from Marketplace, I was able to unbundle device plugins which were used quite rarely, but still added ~3 MB to the final Flipper bundle. Reviewed By: mweststrate Differential Revision: D26337297 fbshipit-source-id: 23a36cc15ca976a1215440192718d985e1f322fd
This commit is contained in:
committed by
Facebook GitHub Bot
parent
4541cdc23b
commit
4cb40de3f5
@@ -30,18 +30,14 @@ const {version} = require('../package.json');
|
|||||||
|
|
||||||
const dev = process.env.NODE_ENV !== 'production';
|
const dev = process.env.NODE_ENV !== 'production';
|
||||||
|
|
||||||
// For insiders builds we bundle into them all the device plugins,
|
// For insiders builds we bundle top 5 popular device plugins,
|
||||||
// plus top 10 "universal" plugins starred by more than 100 users.
|
// plus top 10 popular "universal" plugins starred by more than 100 users.
|
||||||
const hardcodedPlugins = new Set<string>([
|
const hardcodedPlugins = new Set<string>([
|
||||||
// Device plugins
|
// Popular device plugins
|
||||||
'DeviceLogs',
|
'DeviceLogs',
|
||||||
'CrashReporter',
|
'CrashReporter',
|
||||||
'MobileBuilds',
|
'MobileBuilds',
|
||||||
'DeviceCPU',
|
|
||||||
'Tracery',
|
|
||||||
'Hermesdebuggerrn',
|
'Hermesdebuggerrn',
|
||||||
'kaios-big-allocations',
|
|
||||||
'kaios-graphs',
|
|
||||||
'React',
|
'React',
|
||||||
// Popular client plugins
|
// Popular client plugins
|
||||||
'Inspector',
|
'Inspector',
|
||||||
|
|||||||
Reference in New Issue
Block a user