From 9885af7f38acd53061c4f7705b4ff01e6e1be861 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Wed, 9 Sep 2020 10:20:24 -0400 Subject: [PATCH] fix lint --- package.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index 13406ff2..c21a3c04 100644 --- a/package.json +++ b/package.json @@ -45,14 +45,11 @@ }, "scripts": { "lerna": "lerna", - "build": "lerna run prepare --since master --stream --sort -- --scripts-prepend-node-path", "build:all": "lerna run build", "publish": "lerna publish", "canary": "lerna publish --canary preminor --npm-tag alpha", "next": "lerna publish --bump prerelease --npm-tag next", - "lint": "eslint \"**/*.{js,jsx,ts,tsx}\" --cache", - "lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --cache", - "lint:all": "eslint \"**/*.{js,jsx,ts,tsx}\"", + "lint:all": "lerna run lint", "prettify": "prettier --write .", "prettier:check": "prettier --check .", "test": "jest --onlyChanged",