Skip to content
This repository was archived by the owner on Mar 28, 2026. It is now read-only.

Commit 191d614

Browse files
sync from internal repository
1 parent 0a56d0e commit 191d614

File tree

14 files changed

+2236
-806
lines changed

14 files changed

+2236
-806
lines changed

bin/build-rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ set -euo pipefail
33
cd "$(dirname "${BASH_SOURCE[0]}")/.."
44

55
echo "Building dkdc-links..."
6-
cargo build --manifest-path dkdc-links/Cargo.toml "$@"
6+
cargo build --manifest-path dkdc-links/Cargo.toml --features app,webapp "$@"
77

88
echo "Rust build complete!"

bin/check-py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -euo pipefail
33
cd "$(dirname "${BASH_SOURCE[0]}")/.."
44

55
echo "Running ruff..."
6-
uv run ruff check .
6+
uv run dev ruff check .
77
uv run ruff format --check .
88

99
echo "Python checks passed!"

bin/check-rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ echo "Checking Rust formatting..."
66
cargo fmt --manifest-path dkdc-links/Cargo.toml -- --check
77

88
echo "Running clippy..."
9-
cargo clippy --manifest-path dkdc-links/Cargo.toml -- -D warnings
9+
cargo clippy --manifest-path dkdc-links/Cargo.toml --features app,webapp -- -D warnings
1010

1111
echo "Running Rust tests..."
12-
cargo test --manifest-path dkdc-links/Cargo.toml
12+
cargo test --manifest-path dkdc-links/Cargo.toml --features app,webapp
1313

1414
echo "Rust checks passed!"

bin/install-rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ set -euo pipefail
33
cd "$(dirname "${BASH_SOURCE[0]}")/.."
44

55
echo "Installing dkdc-links CLI..."
6-
cargo install --path dkdc-links --features webapp --force
6+
cargo install --path dkdc-links --features app,webapp --force
77

88
echo "Rust install complete!"

bin/test-rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
set -euo pipefail
33
cd "$(dirname "${BASH_SOURCE[0]}")/.."
44

5-
cargo test --manifest-path dkdc-links/Cargo.toml "$@"
5+
cargo test --manifest-path dkdc-links/Cargo.toml --features app,webapp "$@"

0 commit comments

Comments
 (0)