https://github.com/jamiemason/deploy-test
Temporary repo
https://github.com/jamiemason/deploy-test
Last synced: 4 months ago
JSON representation
Temporary repo
- Host: GitHub
- URL: https://github.com/jamiemason/deploy-test
- Owner: JamieMason
- Created: 2024-10-29T13:47:04.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T16:49:32.000Z (7 months ago)
- Last Synced: 2025-02-16T18:44:05.489Z (4 months ago)
- Language: Rust
- Size: 225 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deploytest
![]()
Consistent dependency versions in large JavaScript Monorepos.
https://jamiemason.github.io/deploytest## Rust
A work in progress implementation of Syncpack in Rust. It is not ready for public use.
## Develop
```shell
git clone https://github.com/JamieMason/deploytest.git -b main deploytest-rust
cd deploytest-rust
```## Run (Development)
There are 2 commands, `lint` and `fix`.
```shell
cargo run -- lint
cargo run -- fix
```Both will check formatting and version/range mismatches by default, but can be filtered with `--format` and `--versions`.
## Build and Run (Production)
```shell
cargo build --release
target/release/deploytest lint
target/release/deploytest fix
```