-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
53 lines (43 loc) · 1.17 KB
/
Copy pathjustfile
File metadata and controls
53 lines (43 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
# Copyright (c) 2026 VinVel
#
# SPDX-License-Identifier: AGPL-3.0-only
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, version 3 only.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
# Project home: hyperion.velcore.net
#
set shell := ["bash", "-uc"]
set windows-shell := ["pwsh.exe", "-NoProfile", "-Command"]
# Rust
test-rust:
cargo test
check-rust:
cargo check
cargo clippy --all-targets --all-features
cargo fmt --check
fmt-rust:
cargo fmt
# TypeScript
test-typescript:
pnpm test
check-typescript:
pnpm check
pnpm lint
fmt-typescript:
pnpm format
# Build Commands
build-desktop-debug:
pnpm tauri build --verbose --no-bundle --debug
build-android-debug:
pnpm tauri android build --verbose --debug --apk --split-per-abi --target aarch64
# Composite Tasks
test: test-rust test-typescript
check: check-rust check-typescript
fmt: fmt-rust fmt-typescript
build-debug: build-desktop-debug build-android-debug