trane 0.23.2

An automated system for learning complex skills
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Run all build steps.
build: generate-bindings build-cargo

# Build and verify the TypeScript bindings.
generate-bindings:
	rm -rf bindings
	cargo test --lib export_bindings
	tsc --allowJs --noEmit bindings/*

# Run all cargo checks and tests.
build-cargo:
	cargo fmt
	cargo clippy
	RUSTDOCFLAGS="-D missing_docs" cargo doc --document-private-items --no-deps
	cargo test --release