From d66d2d55c2557fb71bc9321f7611883e1ae711e6 Mon Sep 17 00:00:00 2001 From: Jenni Nurmi Date: Mon, 17 Dec 2018 13:14:27 +0200 Subject: [PATCH] Temporarily remove audit from CircleCI --- .circleci/config.yml | 24 ------------------------ package.json | 5 +---- 2 files changed, 1 insertion(+), 28 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ba44aee3..4c1ca3e9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -69,29 +69,6 @@ jobs: - run: name: Build client application command: yarn run build - audit: - docker: - - image: circleci/node:10.14 - steps: - - checkout - - restore_cache: - name: Restore Yarn Package Cache - keys: - - yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }} - - yarn-packages-{{ .Branch }} - - yarn-packages-master - - yarn-packages- - - run: - name: Install Dependencies - command: yarn install - - save_cache: - name: Save Yarn Package Cache - key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }} - paths: - - node_modules/ - - run: - name: Audit dependencies - command: yarn run audit workflows: version: 2 format_test_build_audit: @@ -99,4 +76,3 @@ workflows: - format - test - build - - audit diff --git a/package.json b/package.json index 47ca3679..7b4f0ca4 100644 --- a/package.json +++ b/package.json @@ -62,8 +62,6 @@ "enzyme-to-json": "^3.3.4", "inquirer": "^6.2.0", "nodemon": "^1.17.2", - "nsp": "^3.2.1", - "nsp-preprocessor-yarn": "^1.0.1", "prettier": "^1.15.3" }, "scripts": { @@ -78,8 +76,7 @@ "eject": "sharetribe-scripts eject", "start": "node server/index.js", "dev-server": "export NODE_ENV=development PORT=4000 REACT_APP_CANONICAL_ROOT_URL=http://localhost:4000&&yarn run build&&nodemon --watch server server/index.js", - "heroku-postbuild": "yarn run build", - "audit": "nsp check --preprocessor yarn" + "heroku-postbuild": "yarn run build" }, "prettier": { "singleQuote": true,