chore: Add nohoist flag to babel-loader and webpack

This commit is contained in:
Faruk AYDIN
2022-01-13 00:29:19 +03:00
committed by Ömer Faruk Aydın
parent 02cfb979bc
commit 6ad92b60e3
3 changed files with 4239 additions and 78 deletions

View File

@@ -2,16 +2,14 @@
"name": "@automatisch/root",
"private": true,
"scripts": {
"start": "lerna run --stream --scope=@*/{web,backend} dev",
"start": "lerna run --stream --scope=@*/{web,backend,docs} dev",
"start:web": "lerna run --stream --scope @*/web dev",
"start:backend": "lerna run --stream --scope @*/backend dev",
"build:docs": "cd ./packages/docs && yarn install && yarn build"
},
"workspaces": {
"packages": [
"packages/backend",
"packages/web"
]
"packages": ["packages/*"],
"nohoist": ["**/babel-loader", "**/webpack"]
},
"devDependencies": {
"lerna": "^4.0.0"