fix: deprecated pnpx usage migrated to pnpm exec

This commit is contained in:
Andrew Bastin
2022-05-03 12:39:56 +05:30
parent 514210e167
commit c20339d222
7 changed files with 241 additions and 257 deletions

View File

@@ -19,14 +19,14 @@
"scripts": {
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .ts,.js --ignore-path .gitignore .",
"test": "pnpx jest",
"build": "pnpx tsup",
"clean": "pnpx tsc --build --clean",
"test": "pnpm exec jest",
"build": "pnpm exec tsup",
"clean": "pnpm tsc --build --clean",
"postinstall": "pnpm run build",
"prepublish": "pnpm run build",
"do-lint": "pnpm run lint",
"do-lintfix": "pnpm run lintfix",
"do-typecheck": "pnpx tsc --noEmit",
"do-typecheck": "pnpm exec tsc --noEmit",
"do-build-prod": "pnpm run build",
"do-test": "pnpm run test"
},