Files
react/compiler/forget/package.json
T
Lauren Tan 40d1459115 Scaffold workspaces
![image](https://github.com/facebook/react-forget/assets/1390709/bb27e33f-6a88-4b71-8ce2-aeb8db0372f7) 

This is an attempt to scaffold yarn workspaces into our repo with as minimal as 
possible changes to our current setup and directory structure. Essentially this 
PR moves current `src` into `packages/babel-plugin-react-forget` as a first step 
to keep everything working. Later on when we're ready we can split out a 
`react-compiler` package that is decoupled from Babel, but it's too early for 
that now
2023-06-05 13:35:39 -04:00

24 lines
719 B
JSON

{
"private": true,
"workspaces": {
"packages": ["packages/*"],
"nohoist": ["**/next", "**/next/**"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react-forget.git"
},
"scripts": {
"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\"",
"snap": "yarn workspace babel-plugin-react-forget run snap",
"snap:build": "yarn workspace snap run build"
},
"dependencies": {},
"devDependencies": {
"concurrently": "^7.4.0"
}
}