build: pre-commit检查改成检查ts类型

This commit is contained in:
roymondchen 2024-04-23 15:24:25 +08:00
parent 883e5d60fa
commit 7a9e5ca6f6
14 changed files with 20 additions and 11 deletions

View File

@ -2,4 +2,5 @@
. "$(dirname "$0")/_/husky.sh"
npx lint-staged
node ./scripts/build.mjs --type
pnpm --filter "@tmagic/*" check:type

View File

@ -6,7 +6,8 @@
"license": "Apache-2.0",
"scripts": {
"build": "pnpm clean && tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf lib *.tsbuildinfo",
"check:type": "tsc --noEmit --project tsconfig.build.json"
},
"bin": {
"tmagic": "bin/tmagic.js"

View File

@ -24,6 +24,7 @@
"scripts": {
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"check:type": "tsc --noEmit --project tsconfig.build.json",
"clear:type": "rimraf ./types"
},
"engines": {

View File

@ -20,6 +20,7 @@
"scripts": {
"build": "npm run build:type && vite build --mode=es && vite build --mode=umd",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"check:type": "tsc --noEmit --project tsconfig.build.json",
"clear:type": "rimraf ./types"
},
"engines": {

View File

@ -20,6 +20,7 @@
"scripts": {
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"check:type": "tsc --noEmit --project tsconfig.build.json",
"clear:type": "rimraf ./types"
},
"engines": {

View File

@ -21,7 +21,7 @@
"build": "npm run build:type && vite build",
"build:type": " vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types",
"type:check": "vue-tsc --noEmit"
"check:type": "vue-tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -27,7 +27,7 @@
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"clear:type": "rimraf ./types",
"type:check": "vue-tsc --noEmit"
"check:type": "vue-tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -20,7 +20,8 @@
"scripts": {
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types"
"clear:type": "rimraf ./types",
"check:type": "tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -27,7 +27,7 @@
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types",
"type:check": "vue-tsc --noEmit"
"check:type": "vue-tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -17,7 +17,8 @@
"scripts": {
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types"
"clear:type": "rimraf ./types",
"check:type": "tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -20,7 +20,8 @@
"scripts": {
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types"
"clear:type": "rimraf ./types",
"check:type": "tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -25,7 +25,7 @@
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && vue-tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types",
"type:check": "vue-tsc --noEmit"
"check:type": "vue-tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -21,7 +21,7 @@
"build": "npm run build:type && vite build",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types",
"type:check": "vue-tsc --noEmit"
"check:type": "tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"

View File

@ -20,7 +20,8 @@
"scripts": {
"build": "rimraf ./dist && npm run build:type && vite build --mode=es && vite build --mode=umd",
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
"clear:type": "rimraf ./types"
"clear:type": "rimraf ./types",
"check:type": "tsc --noEmit --project tsconfig.build.json"
},
"engines": {
"node": ">=18"