add flipper-plugin keyword to package.json
Summary: For plugins to be discoverable through NPM, they need to have `flipper-plugin` as a keyword. This adds this keyword to all existing plugins (although they are currently not distributed via NPM) and the webside/docs. Reviewed By: passy Differential Revision: D17395079 fbshipit-source-id: e42dd31ca39c3754cf729052ee783687748bafe8
This commit is contained in:
committed by
Facebook Github Bot
parent
97b814d70e
commit
a72eac27a7
@@ -20,6 +20,7 @@ Example `package.json`:
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"title": "My Plugin",
|
"title": "My Plugin",
|
||||||
"icon": "apps",
|
"icon": "apps",
|
||||||
|
|||||||
@@ -49,6 +49,7 @@ you can also specify a title to show in the Flipper sidebar and an icon to displ
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"icon": "apps",
|
"icon": "apps",
|
||||||
"title": "Sea Mammals",
|
"title": "Sea Mammals",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -111,7 +111,6 @@ export default function(props: {onHide: () => any}) {
|
|||||||
</SearchBox>
|
</SearchBox>
|
||||||
</Toolbar>
|
</Toolbar>
|
||||||
<ManagedTable_immutable
|
<ManagedTable_immutable
|
||||||
key="FuryEvents"
|
|
||||||
rowLineHeight={28}
|
rowLineHeight={28}
|
||||||
floating={false}
|
floating={false}
|
||||||
multiline={true}
|
multiline={true}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"adbkit": "^2.11.1"
|
"adbkit": "^2.11.1"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "https://github.com/facebook/flipper",
|
"repository": "https://github.com/facebook/flipper",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"title": "Crash Reporter",
|
"title": "Crash Reporter",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"email": "prit91@fb.com",
|
"email": "prit91@fb.com",
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"icon": "internet",
|
"icon": "internet",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"sql-formatter": "^2.3.3",
|
"sql-formatter": "^2.3.3",
|
||||||
"dateformat": "^3.0.3"
|
"dateformat": "^3.0.3"
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"title": "Example Plugin",
|
"title": "Example Plugin",
|
||||||
"icon": "apps",
|
"icon": "apps",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"title": "Images",
|
"title": "Images",
|
||||||
"icon": "profile",
|
"icon": "profile",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"deep-equal": "^1.0.1",
|
"deep-equal": "^1.0.1",
|
||||||
"lodash.clonedeep": "^4.5.0",
|
"lodash.clonedeep": "^4.5.0",
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lodash": "^4.17.5"
|
"lodash": "^4.17.5"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"title": "Logs",
|
"title": "Logs",
|
||||||
"icon": "arrow-right",
|
"icon": "arrow-right",
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"title": "Navigation",
|
"title": "Navigation",
|
||||||
"icon": "directions",
|
"icon": "directions",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pako": "^1.0.6",
|
"pako": "^1.0.6",
|
||||||
"@types/pako": "^1.0.1",
|
"@types/pako": "^1.0.1",
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"address": "^1.1.2",
|
"address": "^1.1.2",
|
||||||
"get-port": "^4.0.0",
|
"get-port": "^4.0.0",
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"gatekeeper": "sonar_sandbox_plugin",
|
"gatekeeper": "sonar_sandbox_plugin",
|
||||||
"icon": "translate",
|
"icon": "translate",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.tsx",
|
"main": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"icon": "apps",
|
"icon": "apps",
|
||||||
"title": "Sea Mammals",
|
"title": "Sea Mammals",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"gatekeeper": "flipper_sections_plugin",
|
"gatekeeper": "flipper_sections_plugin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"react-d3-tree": "^1.12.1"
|
"react-d3-tree": "^1.12.1"
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"keywords": ["flipper-plugin"],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lodash": "^4.17.13"
|
"lodash": "^4.17.13"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user