mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-11 17:44:19 -05:00
36 lines
653 B
TOML
36 lines
653 B
TOML
[gen-ts-types]
|
|
description = "generates typescript types for the ts client"
|
|
path = "."
|
|
cmd = "node ./client/core/ts/generate_types.mjs"
|
|
|
|
[build-ts-client]
|
|
path = "client/core/ts"
|
|
cmd = "yarn build"
|
|
|
|
[start-frontend]
|
|
path = "frontend"
|
|
cmd = "yarn dev"
|
|
|
|
[build-frontend]
|
|
path = "frontend"
|
|
cmd = "yarn build"
|
|
|
|
[monitor-sync]
|
|
path = "bin/cli"
|
|
cmd = "cargo run -- sync"
|
|
|
|
[monitor-cli-test]
|
|
path = "bin/cli"
|
|
cmd = "cargo run -- execute --help"
|
|
|
|
[rustdoc-server]
|
|
cmd = "cargo watch -s 'cargo doc --no-deps -p monitor_client' & http --quiet target/doc"
|
|
|
|
[docsite-start]
|
|
path = "docsite"
|
|
cmd = "yarn start"
|
|
|
|
[docsite-deploy]
|
|
path = "docsite"
|
|
cmd = "yarn deploy"
|