tangled
alpha
login
or
join now
bwc9876.dev
/
manhunt-app
0
fork
atom
Live location tracking and playback for the game "manhunt"
0
fork
atom
overview
issues
pulls
1
pipelines
Fix checks
bwc9876.dev
9 months ago
2a141893
9a68a299
verified
This commit was signed with the committer's
known signature
.
bwc9876.dev
SSH Key Fingerprint:
SHA256:DanMEP/RNlSC7pAVbnXO6wzQV00rqyKj053tz4uH5gQ=
+2
-2
2 changed files
expand all
collapse all
unified
split
frontend
package.json
nix
checks
types-sync.nix
+1
-1
frontend/package.json
···
7
7
"dev": "vite",
8
8
"build": "tsc && vite build",
9
9
"preview": "vite preview",
10
10
-
"lint": "prettier --check . && tsc && eslint --cache",
10
10
+
"lint": "tsc && eslint --cache",
11
11
"tauri": "tauri"
12
12
},
13
13
"dependencies": {
+1
-1
nix/checks/types-sync.nix
···
1
1
{pkgs, ...}:
2
2
pkgs.runCommand "check-types-synced" {} ''
3
3
${pkgs.manhunt}/bin/export-types ./bindings.ts
4
4
-
${pkgs.prettier}/bin/prettier --write ./bindings.ts --config ${../../frontend/.prettierrc.yaml}
4
4
+
${pkgs.prettier}/bin/prettier --write ./bindings.ts --config ${../../.prettierrc.yaml}
5
5
diff bindings.ts ${../../frontend/src/bindings.ts}
6
6
touch $out
7
7
''