From 9b3126066ca699c52386f910b7e590d3b3e3915b Mon Sep 17 00:00:00 2001 From: ztimson Date: Mon, 2 Sep 2019 16:30:59 -0400 Subject: [PATCH] Switched back to yarn (Should resolve manifest issues) --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5acabeb..6612e55 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,7 +17,7 @@ jobs: - run: name: Install Dependancies - command: npm install + command: yarn - save_cache: key: v1-dependencies-{{ checksum "package.json" }} @@ -26,7 +26,7 @@ jobs: - run: name: Build - command: npm run build --prod + command: yarn build --prod - persist_to_workspace: root: ~/repo @@ -51,7 +51,7 @@ jobs: - run: name: Deploy - command: npm run deploy + command: yarn deploy workflows: version: 2