From ea37cf7ffc7d4cb7429594b218aed077e859776f Mon Sep 17 00:00:00 2001 From: emoralesb05 Date: Tue, 17 Dec 2019 11:47:25 -0800 Subject: [PATCH] fix(): npm audit restriction --- scripts/ci/travis-script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/travis-script.sh b/scripts/ci/travis-script.sh index d187689c2..9ec48d169 100755 --- a/scripts/ci/travis-script.sh +++ b/scripts/ci/travis-script.sh @@ -38,7 +38,7 @@ elif [ "${MODE}" = "release" ]; then elif [ "${MODE}" = "unit-test" ]; then npm run test elif [ "${MODE}" = "audit" ]; then - npm audit + npm audit --production --audit-level=high elif [ "${MODE}" = "a11y" ]; then npm run a11y fi