mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-05 20:17:13 +00:00
chore: dev container config
This commit is contained in:
parent
24de193ea4
commit
f150b6f4b1
2 changed files with 7 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
"features": {
|
||||
"ghcr.io/devcontainers/features/node:1": {},
|
||||
"ghcr.io/devcontainers-contrib/features/deno:1": {}
|
||||
}
|
||||
},
|
||||
|
||||
// Features to add to the dev container. More info: https://containers.dev/implementors/features.
|
||||
// "features": {},
|
||||
|
@ -13,7 +13,7 @@
|
|||
// "forwardPorts": [],
|
||||
|
||||
// Use 'postCreateCommand' to run commands after the container is created.
|
||||
// "postCreateCommand": "rustc --version",
|
||||
"postCreateCommand": "bash scripts/install-dev-tools.sh"
|
||||
|
||||
// Configure tool-specific properties.
|
||||
// "customizations": {},
|
||||
|
|
5
scripts/install-dev-tools.sh
Normal file
5
scripts/install-dev-tools.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
cargo install cargo-fuzz
|
||||
cargo install cargo-nextest
|
||||
cargo install cargo-crev
|
||||
cargo install just
|
||||
rustup component add clippy
|
Loading…
Reference in a new issue