diff --git a/js/components/MainWindow/ClutterBar.tsx b/js/components/MainWindow/ClutterBar.tsx index 1be1df34..db9d6c80 100644 --- a/js/components/MainWindow/ClutterBar.tsx +++ b/js/components/MainWindow/ClutterBar.tsx @@ -2,7 +2,7 @@ import React from "react"; import classnames from "classnames"; import * as Actions from "../../actionCreators"; -import { Action, Dispatch, Thunk } from "../../types"; +import { Action, Thunk } from "../../types"; import OptionsContextMenu from "../OptionsContextMenu"; import ContextMenuTarget from "../ContextMenuTarget"; import { useActionCreator, useTypedSelector } from "../../hooks"; diff --git a/package.json b/package.json index a1011377..99b2d722 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "stats": "webpack --config=demo/config/webpack.prod.js --json > stats.json", "stats-library": "webpack --config=config/webpack.library.js --json > stats.json", "test": "jest --config=config/jest.unit.js", - "travis-tests": "npm run test && npm run test && npm run type-check && npm run build && npm run build-library && npm run integration-tests", + "travis-tests": "npm run lint && npm run test && npm run test && npm run type-check && npm run build && npm run build-library && npm run integration-tests", "tdd": "jest --config=config/jest.unit.js --watch", "format": "prettier --write \"**/*.{js,ts,tsx,d.ts,css}\"", "integration-tests": "npm run build -- --display=errors-only && jest --config=config/jest.integration.js --runInBand",