Do not bump every package version for every release
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
This commit is contained in:
committed by
Facebook GitHub Bot
parent
92bd68a371
commit
dbc888613b
2
.github/workflows/publish-npm.yml
vendored
2
.github/workflows/publish-npm.yml
vendored
@@ -19,6 +19,8 @@ jobs:
|
|||||||
node-version: '12.x'
|
node-version: '12.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
run: yarn
|
run: yarn
|
||||||
|
- name: Set versions
|
||||||
|
run: yarn bump-versions
|
||||||
- name: Set up npm token
|
- name: Set up npm token
|
||||||
run: echo "//registry.yarnpkg.com/:_authToken=${{ secrets.FLIPPER_NPM_TOKEN }}" >> ~/.npmrc
|
run: echo "//registry.yarnpkg.com/:_authToken=${{ secrets.FLIPPER_NPM_TOKEN }}" >> ~/.npmrc
|
||||||
- name: Publish packages
|
- name: Publish packages
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper",
|
"name": "flipper",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Mobile development tool",
|
"description": "Mobile development tool",
|
||||||
"productName": "Flipper",
|
"productName": "Flipper",
|
||||||
"author": "Facebook Inc",
|
"author": "Facebook Inc",
|
||||||
@@ -28,9 +28,9 @@
|
|||||||
"deep-equal": "^2.0.1",
|
"deep-equal": "^2.0.1",
|
||||||
"expand-tilde": "^2.0.2",
|
"expand-tilde": "^2.0.2",
|
||||||
"flipper-client-sdk": "^0.0.3",
|
"flipper-client-sdk": "^0.0.3",
|
||||||
"flipper-doctor": "0.67.0",
|
"flipper-doctor": "0.0.0",
|
||||||
"flipper-plugin": "0.67.0",
|
"flipper-plugin": "0.0.0",
|
||||||
"flipper-plugin-lib": "0.67.0",
|
"flipper-plugin-lib": "0.0.0",
|
||||||
"fs-extra": "^9.0.1",
|
"fs-extra": "^9.0.1",
|
||||||
"immer": "^8.0.0",
|
"immer": "^8.0.0",
|
||||||
"immutable": "^4.0.0-rc.12",
|
"immutable": "^4.0.0-rc.12",
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
"@testing-library/dom": "^7.26.3",
|
"@testing-library/dom": "^7.26.3",
|
||||||
"@testing-library/react": "^11.1.0",
|
"@testing-library/react": "^11.1.0",
|
||||||
"@types/lodash.memoize": "^4.1.6",
|
"@types/lodash.memoize": "^4.1.6",
|
||||||
"flipper-test-utils": "0.67.0",
|
"flipper-test-utils": "0.0.0",
|
||||||
"metro-runtime": "^0.63.0",
|
"metro-runtime": "^0.63.0",
|
||||||
"mock-fs": "^4.12.0",
|
"mock-fs": "^4.12.0",
|
||||||
"pretty-format": "^26.1.0",
|
"pretty-format": "^26.1.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-babel-transformer",
|
"name": "flipper-babel-transformer",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Babel transformer for Flipper plugins",
|
"description": "Babel transformer for Flipper plugins",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-doctor",
|
"name": "flipper-doctor",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Utility for checking for issues with a flipper installation",
|
"description": "Utility for checking for issues with a flipper installation",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"flipperBundlerEntry": "src",
|
"flipperBundlerEntry": "src",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-e2e",
|
"name": "flipper-e2e",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "E2E test suite for Flipper",
|
"description": "E2E test suite for Flipper",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "eslint-plugin-flipper",
|
"name": "eslint-plugin-flipper",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Custom ESLint rules for Flipper",
|
"description": "Custom ESLint rules for Flipper",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "26",
|
"@types/jest": "26",
|
||||||
"@typescript-eslint/parser": "^4.2.0",
|
"@typescript-eslint/parser": "^4.2.0",
|
||||||
"flipper-test-utils": "0.67.0",
|
"flipper-test-utils": "0.0.0",
|
||||||
"jest": "^26",
|
"jest": "^26",
|
||||||
"prettier": "^2.0.0",
|
"prettier": "^2.0.0",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-plugin",
|
"name": "flipper-plugin",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Flipper Desktop plugin SDK and components",
|
"description": "Flipper Desktop plugin SDK and components",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-headless-tests",
|
"name": "flipper-headless-tests",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-headless",
|
"name": "flipper-headless",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Headless version of Flipper - Mobile development tool",
|
"description": "Headless version of Flipper - Mobile development tool",
|
||||||
"productName": "Flipper Headless",
|
"productName": "Flipper Headless",
|
||||||
"author": "Facebook Inc",
|
"author": "Facebook Inc",
|
||||||
|
|||||||
@@ -181,7 +181,7 @@
|
|||||||
"eslint-config-prettier": "^6.10.1",
|
"eslint-config-prettier": "^6.10.1",
|
||||||
"eslint-import-resolver-typescript": "^2.3.0",
|
"eslint-import-resolver-typescript": "^2.3.0",
|
||||||
"eslint-plugin-babel": "^5.3.1",
|
"eslint-plugin-babel": "^5.3.1",
|
||||||
"eslint-plugin-flipper": "0.67.0",
|
"eslint-plugin-flipper": "0.0.0",
|
||||||
"eslint-plugin-flowtype": "^4.7.0",
|
"eslint-plugin-flowtype": "^4.7.0",
|
||||||
"eslint-plugin-header": "^3.0.0",
|
"eslint-plugin-header": "^3.0.0",
|
||||||
"eslint-plugin-import": "^2.22.0",
|
"eslint-plugin-import": "^2.22.0",
|
||||||
@@ -193,9 +193,9 @@
|
|||||||
"expand-tilde": "^2.0.2",
|
"expand-tilde": "^2.0.2",
|
||||||
"express": "^4.15.2",
|
"express": "^4.15.2",
|
||||||
"fb-watchman": "^2.0.1",
|
"fb-watchman": "^2.0.1",
|
||||||
"flipper-babel-transformer": "0.67.0",
|
"flipper-babel-transformer": "0.0.0",
|
||||||
"flipper-pkg-lib": "0.67.0",
|
"flipper-pkg-lib": "0.0.0",
|
||||||
"flipper-plugin-lib": "0.67.0",
|
"flipper-plugin-lib": "0.0.0",
|
||||||
"fs-extra": "^9.0.0",
|
"fs-extra": "^9.0.0",
|
||||||
"glob": "^7.1.2",
|
"glob": "^7.1.2",
|
||||||
"ignore": "^5.1.4",
|
"ignore": "^5.1.4",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-pkg-lib",
|
"name": "flipper-pkg-lib",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Library for building and publishing Flipper plugins",
|
"description": "Library for building and publishing Flipper plugins",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": "https://github.com/facebook/flipper/issues",
|
"bugs": "https://github.com/facebook/flipper/issues",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"flipper-babel-transformer": "0.67.0",
|
"flipper-babel-transformer": "0.0.0",
|
||||||
"fs-extra": "^9.0.1",
|
"fs-extra": "^9.0.1",
|
||||||
"metro": "^0.63.0",
|
"metro": "^0.63.0",
|
||||||
"metro-minify-terser": "^0.63.0"
|
"metro-minify-terser": "^0.63.0"
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
"@types/fs-extra": "^9.0.1",
|
"@types/fs-extra": "^9.0.1",
|
||||||
"@types/jest": "^26",
|
"@types/jest": "^26",
|
||||||
"@types/node": "^14.14.6",
|
"@types/node": "^14.14.6",
|
||||||
"flipper-test-utils": "0.67.0",
|
"flipper-test-utils": "0.0.0",
|
||||||
"globby": "^11",
|
"globby": "^11",
|
||||||
"jest": "^26",
|
"jest": "^26",
|
||||||
"mock-fs": "^4.12.0",
|
"mock-fs": "^4.12.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-pkg",
|
"name": "flipper-pkg",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Utility for building and publishing Flipper plugins",
|
"description": "Utility for building and publishing Flipper plugins",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
@@ -20,8 +20,8 @@
|
|||||||
"ajv": "^6.12.2",
|
"ajv": "^6.12.2",
|
||||||
"ajv-errors": "^1.0.1",
|
"ajv-errors": "^1.0.1",
|
||||||
"cli-ux": "^5.4.6",
|
"cli-ux": "^5.4.6",
|
||||||
"flipper-pkg-lib": "0.67.0",
|
"flipper-pkg-lib": "0.0.0",
|
||||||
"flipper-plugin-lib": "0.67.0",
|
"flipper-plugin-lib": "0.0.0",
|
||||||
"fs-extra": "^9.0.1",
|
"fs-extra": "^9.0.1",
|
||||||
"inquirer": "^7.3.3",
|
"inquirer": "^7.3.3",
|
||||||
"lodash": "^4.17.19",
|
"lodash": "^4.17.19",
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
"@types/inquirer": "^7.3.1",
|
"@types/inquirer": "^7.3.1",
|
||||||
"@types/jest": "^26",
|
"@types/jest": "^26",
|
||||||
"@types/node": "^14.14.6",
|
"@types/node": "^14.14.6",
|
||||||
"flipper-test-utils": "0.67.0",
|
"flipper-test-utils": "0.0.0",
|
||||||
"globby": "^11",
|
"globby": "^11",
|
||||||
"jest": "^26",
|
"jest": "^26",
|
||||||
"prettier": "^2.0.0",
|
"prettier": "^2.0.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-plugin-lib",
|
"name": "flipper-plugin-lib",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Library containing common Flipper plugin installation utilities",
|
"description": "Library containing common Flipper plugin installation utilities",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
"@types/fs-extra": "^9.0.1",
|
"@types/fs-extra": "^9.0.1",
|
||||||
"@types/jest": "^26",
|
"@types/jest": "^26",
|
||||||
"@types/node": "^14.14.6",
|
"@types/node": "^14.14.6",
|
||||||
"flipper-test-utils": "0.67.0",
|
"flipper-test-utils": "0.0.0",
|
||||||
"globby": "^11",
|
"globby": "^11",
|
||||||
"jest": "^26",
|
"jest": "^26",
|
||||||
"mock-fs": "^4.12.0",
|
"mock-fs": "^4.12.0",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-device-cpu",
|
"name": "flipper-plugin-device-cpu",
|
||||||
"id": "DeviceCPU",
|
"id": "DeviceCPU",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-crash-reporter",
|
"name": "flipper-plugin-crash-reporter",
|
||||||
"id": "CrashReporter",
|
"id": "CrashReporter",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "A plugin which will display a crash",
|
"description": "A plugin which will display a crash",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-databases",
|
"name": "flipper-plugin-databases",
|
||||||
"id": "Databases",
|
"id": "Databases",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"title": "Databases",
|
"title": "Databases",
|
||||||
"icon": "internet",
|
"icon": "internet",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-example",
|
"name": "flipper-plugin-example",
|
||||||
"id": "Example",
|
"id": "Example",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "An example for a Flipper plugin",
|
"description": "An example for a Flipper plugin",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
@@ -22,10 +22,10 @@
|
|||||||
"prepack": "flipper-pkg lint && flipper-pkg bundle --production"
|
"prepack": "flipper-pkg lint && flipper-pkg bundle --production"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"flipper": "0.67.0"
|
"flipper": "0.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"flipper": "0.67.0",
|
"flipper": "0.0.0",
|
||||||
"flipper-pkg": "0.67.0"
|
"flipper-pkg": "0.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"id": "flipper-messages",
|
"id": "flipper-messages",
|
||||||
"title": "Flipper Messages",
|
"title": "Flipper Messages",
|
||||||
"icon": "bird",
|
"icon": "bird",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Flipper self inspection: Messages to and from client",
|
"description": "Flipper self inspection: Messages to and from client",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
@@ -22,10 +22,10 @@
|
|||||||
"prepack": "flipper-pkg lint && flipper-pkg bundle --production"
|
"prepack": "flipper-pkg lint && flipper-pkg bundle --production"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"flipper": "0.67.0"
|
"flipper": "0.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"flipper": "0.67.0",
|
"flipper": "0.0.0",
|
||||||
"flipper-pkg": "0.67.0"
|
"flipper-pkg": "0.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-fresco",
|
"name": "flipper-plugin-fresco",
|
||||||
"id": "Fresco",
|
"id": "Fresco",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-hermesdebuggerrn",
|
"name": "flipper-plugin-hermesdebuggerrn",
|
||||||
"id": "Hermesdebuggerrn",
|
"id": "Hermesdebuggerrn",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-kaios-big-allocations",
|
"name": "flipper-plugin-kaios-big-allocations",
|
||||||
"id": "kaios-big-allocations",
|
"id": "kaios-big-allocations",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-kaios-graphs",
|
"name": "flipper-plugin-kaios-graphs",
|
||||||
"id": "kaios-graphs",
|
"id": "kaios-graphs",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-inspector",
|
"name": "flipper-plugin-inspector",
|
||||||
"id": "Inspector",
|
"id": "Inspector",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-leak-canary",
|
"name": "flipper-plugin-leak-canary",
|
||||||
"id": "LeakCanary",
|
"id": "LeakCanary",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-device-logs",
|
"name": "flipper-plugin-device-logs",
|
||||||
"id": "DeviceLogs",
|
"id": "DeviceLogs",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
],
|
],
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"flipper-plugin": "0.67.0"
|
"flipper-plugin": "0.0.0"
|
||||||
},
|
},
|
||||||
"title": "Logs",
|
"title": "Logs",
|
||||||
"icon": "arrow-right",
|
"icon": "arrow-right",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-navigation",
|
"name": "flipper-plugin-navigation",
|
||||||
"id": "Navigation",
|
"id": "Navigation",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
"email": "beneloca@fb.com"
|
"email": "beneloca@fb.com"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"flipper-plugin": "0.67.0",
|
"flipper-plugin": "0.0.0",
|
||||||
"antd": "*"
|
"antd": "*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"title": "Network",
|
"title": "Network",
|
||||||
"description": "Use the Network inspector to inspect outgoing network traffic in your apps.",
|
"description": "Use the Network inspector to inspect outgoing network traffic in your apps.",
|
||||||
"icon": "internet",
|
"icon": "internet",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"flipper-plugin"
|
"flipper-plugin"
|
||||||
@@ -22,8 +22,8 @@
|
|||||||
"xml-beautifier": "^0.4.0"
|
"xml-beautifier": "^0.4.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"flipper": "0.67.0",
|
"flipper": "0.0.0",
|
||||||
"flipper-plugin": "0.67.0"
|
"flipper-plugin": "0.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/pako": "^1.0.1",
|
"@types/pako": "^1.0.1",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-react-devtools",
|
"name": "flipper-plugin-react-devtools",
|
||||||
"id": "React",
|
"id": "React",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-react-native-tic-tac-toe",
|
"name": "flipper-plugin-react-native-tic-tac-toe",
|
||||||
"id": "ReactNativeTicTacToe",
|
"id": "ReactNativeTicTacToe",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"name": "flipper-plugin-sandbox",
|
"name": "flipper-plugin-sandbox",
|
||||||
"id": "Sandbox",
|
"id": "Sandbox",
|
||||||
"title": "Sandbox",
|
"title": "Sandbox",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "index.tsx",
|
"flipperBundlerEntry": "index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"name": "flipper-plugin-sea-mammals",
|
"name": "flipper-plugin-sea-mammals",
|
||||||
"id": "sea-mammals",
|
"id": "sea-mammals",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "src/index.tsx",
|
"flipperBundlerEntry": "src/index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -24,9 +24,9 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"antd": "*",
|
"antd": "*",
|
||||||
"flipper-plugin": "0.67.0"
|
"flipper-plugin": "0.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"flipper-pkg": "0.67.0"
|
"flipper-pkg": "0.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
|
||||||
"name": "flipper-plugin-preferences",
|
"name": "flipper-plugin-preferences",
|
||||||
"id": "Preferences",
|
"id": "Preferences",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "dist/bundle.js",
|
"main": "dist/bundle.js",
|
||||||
"flipperBundlerEntry": "src/index.tsx",
|
"flipperBundlerEntry": "src/index.tsx",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
"lodash": "^4.17.19"
|
"lodash": "^4.17.19"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"flipper-plugin": "0.67.0"
|
"flipper-plugin": "0.0.0"
|
||||||
},
|
},
|
||||||
"title": "Shared Preferences Viewer",
|
"title": "Shared Preferences Viewer",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|||||||
@@ -23,6 +23,8 @@ import {
|
|||||||
babelTransformationsDir,
|
babelTransformationsDir,
|
||||||
} from './paths';
|
} from './paths';
|
||||||
|
|
||||||
|
const {version} = require('../package.json');
|
||||||
|
|
||||||
const dev = process.env.NODE_ENV !== 'production';
|
const dev = process.env.NODE_ENV !== 'production';
|
||||||
|
|
||||||
export function die(err: Error) {
|
export function die(err: Error) {
|
||||||
@@ -35,6 +37,9 @@ export async function generatePluginEntryPoints() {
|
|||||||
const plugins = await getSourcePlugins();
|
const plugins = await getSourcePlugins();
|
||||||
for (const plugin of plugins) {
|
for (const plugin of plugins) {
|
||||||
plugin.isDefault = true;
|
plugin.isDefault = true;
|
||||||
|
plugin.version = plugin.version === '0.0.0' ? version : plugin.version;
|
||||||
|
plugin.flipperSDKVersion =
|
||||||
|
plugin.flipperSDKVersion === '0.0.0' ? version : plugin.flipperSDKVersion;
|
||||||
}
|
}
|
||||||
if (await fs.pathExists(defaultPluginsIndexDir)) {
|
if (await fs.pathExists(defaultPluginsIndexDir)) {
|
||||||
await fs.remove(defaultPluginsIndexDir);
|
await fs.remove(defaultPluginsIndexDir);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-static",
|
"name": "flipper-static",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "flipper-test-utils",
|
"name": "flipper-test-utils",
|
||||||
"version": "0.67.0",
|
"version": "0.0.0",
|
||||||
"description": "Library containing common Flipper test utilities",
|
"description": "Library containing common Flipper test utilities",
|
||||||
"repository": "facebook/flipper",
|
"repository": "facebook/flipper",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
|||||||
@@ -32,8 +32,8 @@ fi
|
|||||||
|
|
||||||
echo "Preparing release $VERSION..."
|
echo "Preparing release $VERSION..."
|
||||||
|
|
||||||
# Update all the packages included as workspaces to the very same version
|
# Update flipper app version to the very same version
|
||||||
yarn --cwd "$DESKTOP_DIR" bump-versions --new-version "$VERSION"
|
yarn --cwd "$DESKTOP_DIR" version --new-version "$VERSION"
|
||||||
|
|
||||||
# Update react-native-flipper to the very same version
|
# Update react-native-flipper to the very same version
|
||||||
yarn --cwd "$SONAR_DIR"/react-native/react-native-flipper version --new-version "$VERSION" --no-git-tag-version
|
yarn --cwd "$SONAR_DIR"/react-native/react-native-flipper version --new-version "$VERSION" --no-git-tag-version
|
||||||
|
|||||||
Reference in New Issue
Block a user