From 0dc9458b93208813df723efbce4e189509c9d73f Mon Sep 17 00:00:00 2001 From: sorrelbri Date: Thu, 6 Feb 2020 10:55:16 -0800 Subject: [PATCH] revert to npm i and add lerna script to paackage.json --- .circleci/config.yml | 4 ++-- package.json | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f02b7c2..697c1c5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,7 +37,7 @@ jobs: # fallback to using the latest cache if no exact match is found - - run: lerna bootstrap + - run: npm install - save_cache: paths: @@ -46,4 +46,4 @@ jobs: v1-dependencies-{{ checksum "package-lock.json" }} # run tests! - - run: lerna run test \ No newline at end of file + - run: npm run lerna run test \ No newline at end of file diff --git a/package.json b/package.json index ab24ba3..c33842d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,9 @@ { "name": "root", "private": true, + "scripts": { + "lerna": "lerna" + }, "devDependencies": { "lerna": "^3.20.2", "chai": "^4.2.0",