diff --git a/package.json b/package.json index 4ed1c25..e2a6503 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "types": "./dist/typings/src/index.d.ts", "scripts": { "test": "jest", - "build": "rm -rf ./dist && npx tsc", + "build": "rm -rf ./dist && tsc", "postinstall": "node postinstall.js", "lint": "bash ./scripts/lint.sh", "lint:fix": "bash ./scripts/lint.sh --fix" diff --git a/scripts/lint.sh b/scripts/lint.sh index 652edcd..8722a12 100644 --- a/scripts/lint.sh +++ b/scripts/lint.sh @@ -5,12 +5,12 @@ output="" lint() { if [[ $1 == '--fix' ]]; then - echo 'Fixing all the fixable linting issues...' + echo 'Fixing all fixable linting issues...' echo eslint ./src --fix & output=$(eslint ./src --fix) else - echo 'Checking the code for linting issues...' + echo 'Checking code for linting issues...' echo eslint ./src & output=$(eslint ./src)