An open API service indexing awesome lists of open source software.

https://github.com/jamiemason/deploy-test

Temporary repo
https://github.com/jamiemason/deploy-test

Last synced: 4 months ago
JSON representation

Temporary repo

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
```