From a13821f2ca6001fdf09ba9313b1e59a2d08cf2a0 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Sat, 7 Oct 2017 19:33:49 -0400 Subject: [PATCH] Stop using Yarn workspaces for now as they don't want to work on Netlify (#2383) * Revert workspaces * Also remove from package.json --- lerna.json | 2 +- package.json | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lerna.json b/lerna.json index 71542c641b15d..571c2abeb46ee 100644 --- a/lerna.json +++ b/lerna.json @@ -5,5 +5,5 @@ "packages/*" ], "version": "independent", - "useWorkspaces": true + "hoist": true } diff --git a/package.json b/package.json index 9527343d283ed..13b97f5a5d5b2 100644 --- a/package.json +++ b/package.json @@ -62,8 +62,5 @@ "test:watch": "jest --watch", "test_bkup": "npm run lint && npm run test-node && npm run test-integration", "watch": "lerna run watch --no-sort --stream --concurrency 999" - }, - "workspaces": [ - "packages/*" - ] + } }