From 2de196a64963af708de1d5b56bc89466095d125f Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Thu, 27 Apr 2023 14:35:27 -0400 Subject: [PATCH] Updated lint and build commands --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8e2b0dc..e0c005f 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "description": "", "main": "./dist/server.js", "scripts": { - "lint": "./node_modules/.bin/eslint .", - "build": "npm run clean && tsc && tsc-alias && npm run copy-static", + "lint": "npx eslint .", + "build": "npm run lint && npm run clean && tsc && tsc-alias && npm run copy-static", "clean": "rm -rf ./dist", "copy-static": "npm run copy-assets && npm run copy-timezones", "copy-assets": "cp -r ./src/assets ./dist/assets",