From ef25c0b67f3233e2960edefafc0287467a5c23ca Mon Sep 17 00:00:00 2001 From: Fabien BERNARD Date: Mon, 10 Sep 2018 11:41:36 +0200 Subject: [PATCH] Fix danger --- dangerfile.ts | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/dangerfile.ts b/dangerfile.ts index 60dc9f43..957fc29e 100644 --- a/dangerfile.ts +++ b/dangerfile.ts @@ -1,6 +1,5 @@ import * as child_process from "child_process"; import { danger, markdown, warn } from "danger"; -import jest from "danger-plugin-jest"; import * as fs from "fs"; import { includes } from "lodash"; @@ -56,5 +55,3 @@ if (fs.existsSync("tslint-errors.json")) { markdown(tslintMarkdown); } } - -jest(); diff --git a/package.json b/package.json index 5f2ee7d4..11d2f8cc 100644 --- a/package.json +++ b/package.json @@ -38,6 +38,7 @@ "build": "operational-scripts build --for npm", "preversion": "npm run build", "version": "auto-changelog -p && git add CHANGELOG.md", + "lint": "tslint src/**/*{ts,tsx} --project .", "prepublishOnly": "operational-scripts prepare" }, "devDependencies": { @@ -48,7 +49,6 @@ "@types/react": "^16.4.1", "auto-changelog": "^1.8.0", "danger": "^3.8.4", - "danger-plugin-jest": "^1.1.0", "doctoc": "^1.3.1", "husky": "^0.14.3", "isomorphic-fetch": "^2.2.1",