mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
c44dab63ff
> Workspaces are a new way to setup your package architecture that’s available by default starting from Yarn 1.0. It allows you to setup multiple packages in such a way that you only need to run yarn install once to install all of them in a single pass. - [x] Tested in development mode - [x] Tested in production mode - [x] Tested with deployment https://with-yarn-workspaces-hwzubdlkul.now.sh/ - [x] Added transpile module example Closes #3638
10 lines
219 B
JSON
10 lines
219 B
JSON
{
|
|
"private": true,
|
|
"workspaces": ["packages/*"],
|
|
"scripts": {
|
|
"dev": "yarn --cwd packages/web-app dev",
|
|
"build": "yarn --cwd packages/web-app build",
|
|
"start": "yarn --cwd packages/web-app start"
|
|
}
|
|
}
|