Docusaurus: Use yarn workspaces (#1313)

Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1313

Use yarn workspaces to consolidate the lockfile, and to let the website use our local Yoga package. This was not possible with the old version of Gatsby we were previously using.

This does not yet sync the versions of different packages, or move config files to the root of the repo. That will happen later after removing the original website package.

Reviewed By: yungsters

Differential Revision: D46884433

fbshipit-source-id: dfa43bdaaad66bb4365922287a39d6a34fa9f464
This commit is contained in:
Nick Gerleman
2023-06-23 17:56:41 -07:00
committed by Facebook GitHub Bot
parent cd7390e093
commit 3e3c4f09f9
4 changed files with 11279 additions and 17728 deletions

9
package.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "yoga-repo",
"version": "0.0.0",
"private": true,
"workspaces": [
"javascript",
"website-next"
]
}