Created a proof of concept flipper-dump

Summary: Created a quick-and-dirty flipper-dump command, to verify that the stand alone flipper-server-core can do it's job without the Electron Flipper

Reviewed By: passy

Differential Revision: D31543516

fbshipit-source-id: ce8e37316ab5f09700421bcf1c7830266e02c999
This commit is contained in:
Michel Weststrate
2021-10-12 15:59:44 -07:00
committed by Facebook GitHub Bot
parent d88b28330a
commit 598bdeb12a
6 changed files with 341 additions and 9 deletions

View File

@@ -9,10 +9,16 @@
"types": "lib/index.d.ts",
"license": "MIT",
"bugs": "https://github.com/facebook/flipper/issues",
"dependencies": {},
"dependencies": {
"flipper-common": "0.0.0",
"flipper-server-core": "0.0.0",
"ts-node": "^10.2.1",
"yargs": "^17.2.1"
},
"devDependencies": {},
"peerDependencies": {},
"scripts": {
"start": "ts-node src/index.tsx",
"reset": "rimraf lib *.tsbuildinfo",
"build": "tsc -b",
"prepack": "yarn reset && yarn build"