File tree Expand file tree Collapse file tree 6 files changed +12
-5
lines changed Expand file tree Collapse file tree 6 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 27
27
run : npm ci
28
28
29
29
- name : Lint
30
- run : npm run lint
30
+ run : npm run lint
31
+
32
+ - name : Typecheck
33
+ run : npm run typecheck
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"lint" : " npm run lint --workspaces --if-present -- --max-warnings=0" ,
8
8
"lint:fix" : " npm run lint --workspaces --if-present -- --fix --max-warnings=0" ,
9
+ "typecheck" : " npm run typecheck --workspaces --if-present" ,
9
10
"postinstall" : " git submodule update --init --recursive"
10
11
},
11
12
"devDependencies" : {
Original file line number Diff line number Diff line change 6
6
"main" : " ./src/index.ts" ,
7
7
"types" : " ./src/index.ts" ,
8
8
"scripts" : {
9
- "test " : " echo \" Error: no test specified \" && exit 1 "
9
+ "typecheck " : " tsc --noEmit "
10
10
},
11
11
"devDependencies" : {
12
12
"@tanstack/react-query" : " ^5.28.14" ,
Original file line number Diff line number Diff line change 17
17
"cargo-ios" : " tsx scripts/cargo-ios.ts" ,
18
18
"cargo-ios-sim" : " tsx scripts/cargo-ios.ts --target=ios-sim" ,
19
19
"cargo-android" : " tsx scripts/cargo-android.ts" ,
20
- "build-rust" : " npm run cargo-android && npm run cargo-ios -- --target=ios-sim"
20
+ "build-rust" : " npm run cargo-android && npm run cargo-ios -- --target=ios-sim" ,
21
+ "typecheck" : " tsc --noEmit"
21
22
},
22
23
"keywords" : [
23
24
" react-native" ,
Original file line number Diff line number Diff line change 7
7
"android" : " expo run:android" ,
8
8
"ios" : " expo run:ios" ,
9
9
"prebuild" : " expo prebuild" ,
10
- "lint" : " eslint ."
10
+ "lint" : " eslint ." ,
11
+ "typecheck" : " tsc --noEmit"
11
12
},
12
13
"dependencies" : {
13
14
"@ironfish/sdk" : " 2.2.0" ,
Original file line number Diff line number Diff line change 16
16
],
17
17
"scripts" : {
18
18
"build" : " tamagui-build --skip-types" ,
19
- "watch" : " tamagui-build --skip-types --watch"
19
+ "watch" : " tamagui-build --skip-types --watch" ,
20
+ "typecheck" : " tsc --noEmit"
20
21
},
21
22
"dependencies" : {
22
23
"@tamagui/config" : " 1.102.1" ,
You can’t perform that action at this time.
0 commit comments