Summary: This diff sets all package version to "0.0.0" except of the root package and changes the bump script to only bump version in the root package. This should reduce possibility of conflicts on release diffs. Anyway we always use the same version for all of our packages, so we can only set it to the root. Before npm publishing we will set all package versions to the same number as in the root package (we actually already do that) so there will be no differences except we won't need to bump version in more than 100 packages each release. Reviewed By: mweststrate Differential Revision: D25162373 fbshipit-source-id: 02fe401bee72845339c67925c130027bdaee559d
23 lines
598 B
JSON
23 lines
598 B
JSON
{
|
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
|
"name": "flipper-plugin-crash-reporter",
|
|
"id": "CrashReporter",
|
|
"version": "0.0.0",
|
|
"description": "A plugin which will display a crash",
|
|
"main": "dist/bundle.js",
|
|
"flipperBundlerEntry": "index.tsx",
|
|
"repository": "https://github.com/facebook/flipper",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"flipper-plugin"
|
|
],
|
|
"title": "Crash Reporter",
|
|
"bugs": {
|
|
"email": "prit91@fb.com",
|
|
"url": "https://fb.workplace.com/groups/220760072184928/"
|
|
},
|
|
"dependencies": {
|
|
"unicode-substring": "^1.0.0"
|
|
}
|
|
}
|