Remove plugin bundling

Summary: Remove the notion of bundled plugins

Reviewed By: lblasa

Differential Revision: D39308888

fbshipit-source-id: aa88ddbf2801ad1da95f89e4c761259b697b0d66
This commit is contained in:
Andrey Goncharov
2022-09-15 10:02:19 -07:00
committed by Facebook GitHub Bot
parent f835e07c46
commit 650ff4bcfb
35 changed files with 39 additions and 284 deletions

View File

@@ -50,7 +50,6 @@ test('getPluginDetailsV1', async () => {
"icon": undefined,
"id": "flipper-plugin-test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": undefined,
@@ -95,7 +94,6 @@ test('getPluginDetailsV2', async () => {
"icon": undefined,
"id": "flipper-plugin-test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": undefined,
@@ -143,7 +141,6 @@ test('id used as title if the latter omited', async () => {
"icon": undefined,
"id": "test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": undefined,
@@ -190,7 +187,6 @@ test('name without "flipper-plugin-" prefix is used as title if the latter omite
"icon": undefined,
"id": "flipper-plugin-test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": undefined,
@@ -240,7 +236,6 @@ test('flipper-plugin-version is parsed', async () => {
"icon": undefined,
"id": "flipper-plugin-test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": undefined,
@@ -294,7 +289,6 @@ test('plugin type and supported devices parsed', async () => {
"icon": undefined,
"id": "flipper-plugin-test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": "device",
@@ -364,7 +358,6 @@ test('plugin type and supported apps parsed', async () => {
"icon": undefined,
"id": "flipper-plugin-test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": "client",
@@ -454,7 +447,6 @@ test('can merge two package.json files', async () => {
"icon": undefined,
"id": "flipper-plugin-test",
"isActivatable": true,
"isBundled": false,
"main": "dist/bundle.js",
"name": "flipper-plugin-test",
"pluginType": "device",

View File

@@ -67,7 +67,6 @@ const installedPlugins: InstalledPluginDetails[] = [
id: 'Hello',
title: 'Hello',
description: 'World?',
isBundled: false,
isActivatable: true,
},
{
@@ -82,7 +81,6 @@ const installedPlugins: InstalledPluginDetails[] = [
id: 'World',
title: 'World',
description: 'Hello?',
isBundled: false,
isActivatable: true,
},
];

View File

@@ -68,7 +68,6 @@ export async function getInstalledPluginDetails(
: undefined;
return {
...pluginDetails,
isBundled: false,
isActivatable: true,
dir,
entry,