From 5c5b24ee8a3461b7b2eb5832fdac4efb9bf3449f Mon Sep 17 00:00:00 2001 From: Shinigami92 Date: Sun, 7 Feb 2021 13:02:05 +0100 Subject: [PATCH] Ignore more folder for standard --- package.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 07cebf18..acdb54cc 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "build": "npm run build:clean && tsc", "build:clean": "rimraf lib", - "test": "npm run build && nyc mocha --exit --timeout 20000 tests/*test.js ", + "test": "standard && ts-standard && npm run build && nyc mocha --exit --timeout 20000 tests/*test.js ", "test:debug": "mocha --inspect-brk --exit tests/*test.js ", "test:nodemon": "nodemon --exec \"npm test\"", "coverage": "nyc report --reporter=text-lcov | coveralls", @@ -36,6 +36,7 @@ "node" ], "ignore": [ + "lib/", "src/", "examples/typescript/" ] @@ -45,7 +46,11 @@ "mocha", "node" ], - "extensions": ".ts" + "extensions": ".ts", + "ignore": [ + "lib/", + "examples/typescript/" + ] }, "author": "pioardi", "license": "MIT", -- 2.34.1