aube 1.29.0

Aube — a fast Node.js package manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Args;

#[derive(Debug, Args)]
pub struct SponsorsArgs {}

pub async fn run(_args: SponsorsArgs) -> miette::Result<()> {
    println!(
        "aube and the jdx.dev open source tools are sponsored by:\n\n  entire.io - https://entire.io\n  37signals - https://37signals.com\n\nView all sponsors: https://jdx.dev/sponsors.html"
    );
    Ok(())
}