Migrate all plugins to spec v2

Summary: All the plugins migrated to spec v2 to allow packaging/publishing them independently from Flipper releases.

Reviewed By: passy

Differential Revision: D22041384

fbshipit-source-id: 23bfaf724f771a57bd628b9ea1c4d37846534a93
This commit is contained in:
Anton Nikolaev
2020-06-15 07:28:12 -07:00
committed by Facebook GitHub Bot
parent 04e58cd6c2
commit 8003e7eb34
18 changed files with 191 additions and 58 deletions

View File

@@ -1,11 +1,16 @@
{
"name": "CrashReporter",
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-crash-reporter",
"id": "CrashReporter",
"version": "0.1.0",
"description": "A plugin which will display a crash",
"main": "index.js",
"main": "dist/bundle.js",
"flipperBundlerEntry": "index.js",
"repository": "https://github.com/facebook/flipper",
"license": "MIT",
"keywords": ["flipper-plugin"],
"keywords": [
"flipper-plugin"
],
"title": "Crash Reporter",
"bugs": {
"email": "prit91@fb.com",
@@ -13,5 +18,8 @@
},
"dependencies": {
"unicode-substring": "^1.0.0"
},
"scripts": {
"prepack": "../../pkg/bin/run bundle"
}
}
}