From 034b1eeafe505200e74c9c3e316df920e9da6a1a Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Fri, 28 Apr 2017 12:46:31 +0200 Subject: [PATCH] =?UTF-8?q?the=20test-cra=20was=20breaking=20the=20build,?= =?UTF-8?q?=20because=20it=E2=80=99s=20dependencies=20are=20not=20managed?= =?UTF-8?q?=20by=20lerna.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/test-cra/package.json | 1 + lerna.json | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/examples/test-cra/package.json b/examples/test-cra/package.json index 89cfe0df5c92..b68a7f6217e3 100644 --- a/examples/test-cra/package.json +++ b/examples/test-cra/package.json @@ -18,6 +18,7 @@ "scripts": { "start": "react-scripts start", "build": "react-scripts build", + "pretest": "npm install", "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject", "storybook": "start-storybook -p 9009 -s public", diff --git a/lerna.json b/lerna.json index cebb3cefa983..7636f0f1f8cb 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,13 @@ { "lerna": "2.0.0-rc.3", "version": "3.0.0", + "commands": { + "bootstrap": { + "ignore": [ + "test-cra" + ] + } + }, "packages": [ "packages/*", "examples/*"