From ebea8e2103561d09fde4173a3ed1b1cde47e0d5f Mon Sep 17 00:00:00 2001 From: Jaewook Ahn Date: Tue, 25 Aug 2020 22:54:29 +0900 Subject: [PATCH] Remove background commands from package scripts --- package.json | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 22e41e0..dc5888d 100644 --- a/package.json +++ b/package.json @@ -6,14 +6,9 @@ "author": "Jaewook Ahn ", "license": "MIT", "scripts": { - "build-popup": "cross-env REACT_APP_ENV=production react-scripts build", - "prebuild-background": "rm -rf build/background", - "build-background": "tsc --project background.tsconfig.json", - "build": "yarn build-popup && yarn build-background", + "build": "cross-env REACT_APP_ENV=production react-scripts build", "dev": "cross-env REACT_APP_ENV=development react-scripts start", - "lint-popup": "eslint src --ext .js,.ts,.jsx,.tsx", - "lint-background": "eslint background --ext .js,.ts,.jsx,.tsx", - "lint": "yarn lint-popup && yarn lint-background", + "lint": "eslint src --ext .js,.ts,.jsx,.tsx", "prepackage": "yarn build", "package": "node scripts/CreatePackage.js", "postpackage": "node scripts/CreateDistribution.js"