Skip to content

Commit 6b1dd66

Browse files
committed
fix: update release script to use pnpx vue-tsc, instead of local vue-tsc from package
1 parent e402983 commit 6b1dd66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adminforth/spa/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"compilerOptions": {
66
"composite": true,
77
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
8-
8+
"ignoreDeprecations": "6.0",
99
"baseUrl": ".",
1010
"paths": {
1111
"@/*": ["./src/*"]

live-demo/deploy/typeCheckSPA.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
pnpm type-check 2>&1
3+
pnpx vue-tsc --build --force 2>&1
44
type_check_status=$?
55

66
if [ $type_check_status -ne 0 ]; then

0 commit comments

Comments
 (0)