update plugin's package.json

Summary:
For all plugins:
- move static fields `title`, `id` and `icon` to `package.json`
- adds "bugs" field for all plugins containing links to support groups/oncalls.

Reviewed By: priteshrnandgaonkar

Differential Revision: D13417286

fbshipit-source-id: 7b341176915f3ed7b473b95c1d879f21d7d634ef
This commit is contained in:
Daniel Büchele
2018-12-18 10:12:43 -08:00
committed by Facebook Github Bot
parent c9b982b182
commit 1fc73ad2fb
19 changed files with 62 additions and 49 deletions

View File

@@ -38,10 +38,6 @@ export default class SandboxView extends FlipperPlugin<SandboxState> {
showFeedback: false,
};
static title = 'Sandbox';
static id = 'Sandbox';
static icon = 'translate';
static TextInput = styled('input')({
border: `1px solid ${colors.light10}`,
fontSize: '1em',

View File

@@ -1,7 +1,11 @@
{
"name": "flipper-plugin-sandbox",
"name": "Sandbox",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"gatekeeper": "sonar_sandbox_plugin"
"gatekeeper": "sonar_sandbox_plugin",
"icon": "translate",
"bugs": {
"email": "edoardo@fb.com"
}
}