Files
react/compiler/forget/package.json
T
Lauren Tan b6c1ca9718 [build] yarn bundle:meta builds and uploads all packages
Some changes to our build infra to create a Meta bundle containing all packages. 
Needs corresponding changes in the internal upgrade commands
2023-06-15 12:52:55 -04:00

27 lines
845 B
JSON

{
"private": true,
"workspaces": {
"packages": ["packages/*", "apps/*"],
"nohoist": ["**/next", "**/next/**"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react-forget.git"
},
"scripts": {
"bundle:meta": "scripts/bundle-meta.sh",
"hash": "scripts/hash.sh",
"start": "yarn workspace playground run start",
"next": "yarn workspace playground run dev",
"build": "yarn workspaces run build",
"dev": "concurrently --kill-others \"yarn workspace babel-plugin-react-forget run tsc --watch\" \"yarn workspace playground run dev\"",
"test": "yarn workspaces run test",
"snap": "yarn workspace babel-plugin-react-forget run snap",
"snap:build": "yarn workspace snap run build"
},
"dependencies": {},
"devDependencies": {
"concurrently": "^7.4.0"
}
}