From fa394e8b4e81f26eb93e539b6fe83372b2c0e42b 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 issue with babel-eslint https://github.com/babel/babel-eslint/issues/749 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 50af32b9..99652e29 100644 --- a/package.json +++ b/package.json @@ -81,12 +81,12 @@ }, "scripts": { "build": "babel lib/ --config-file=./scripts/babel.config.js --out-dir=lib-cjs/ --source-maps", - "ci": "npm run lint && npm test && nyc report --reporter=text-lcov | coveralls", + "ci": "npm test && nyc report --reporter=text-lcov | coveralls", "lint": "npm run lint:cjs ; npm run lint:esm", "lint:cjs": "eslint --config=scripts/eslintrc.cjs.js scripts/", "lint:esm": "eslint --config=scripts/eslintrc.esm.js lib/ test/", "posttest": "nyc report --reporter=text-summary --reporter=html", - "prepublishOnly": "npm run lint && npm test && npm run build", + "prepublishOnly": "npm test && npm run build", "test": "nyc --exclude=scripts/ --silent mocha test/ --bail --check-leaks --require=scripts/register-babel", "test:watch": "npm test -- --watch --watch-extensions=js,json" },