diff --git a/.circleci/config.yml b/.circleci/config.yml index 4614d5d0..c1f1687d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,7 +11,7 @@ references: - dependencies-{{ .Environment.CI_CACHE_KEY }}-{{ .Environment.CIRCLE_JOB }}- - run: yarn install - - run: yarn audit || true + - run: yarn audit - save_cache: key: dependencies-{{ .Environment.CI_CACHE_KEY }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "yarn.lock" }}-{{ .Branch }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 457c5f0c..3f93185c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Fixed - Improve `README.md` with some minor fixes ([#4](https://github.com/speee/jsx-slack/pull/4)) +- Revert ignored audit ([#5](https://github.com/speee/jsx-slack/pull/5)) ## v0.1.0 - 2019-03-01 diff --git a/package.json b/package.json index fbe904fe..678976a6 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "scripts": { "build": "rimraf lib && tsc", "build:demo": "rimraf .cache && parcel build demo/index.html --out-dir demo/build --no-source-maps", - "check:audit": "yarn audit || true", + "check:audit": "yarn audit", "check:format": "yarn -s format -c", "check:ts": "tsc --noEmit", "demo": "parcel demo/index.html --out-dir demo/build",