From a3b3a747e3e74ab86b7105a07ed7229e905d669a Mon Sep 17 00:00:00 2001 From: Steven D Vachon Date: Sat, 27 Jul 2019 16:57:32 -0400 Subject: [PATCH] Temporarily removed lint from ci/prepublishOnly scripts due to errors --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f75a5010..ec37e131 100644 --- a/package.json +++ b/package.json @@ -78,11 +78,11 @@ }, "scripts": { "build": "babel lib/ --config-file=./scripts/babel.config.js --out-dir=lib-cjs/ --source-maps", - "ci": "npm run lint && npm test && c8 report --reporter=text-lcov | coveralls", + "ci": "npm test && c8 report --reporter=text-lcov | coveralls", "lint": "eslint lib/ scripts/ test/", "lint:fix": "npm run lint -- --fix", "posttest": "c8 report --reporter=text-summary --reporter=html", - "prepublishOnly": "npm run lint && npm test && npm run build", + "prepublishOnly": "npm test && npm run build", "test": "c8 --exclude=scripts/ mocha test/ --bail --check-leaks --require=scripts/register-babel", "test:watch": "npm test -- --watch --watch-extensions=js,json" },