morph-cli 0.1.0

AST-based codebase migration and codemod tool for JavaScript and TypeScript projects.
Documentation
1
2
3
4
5
6
7
8
9
#![allow(unused)]
use morph_cli::{cli, commands};

use anyhow::Result;

fn main() -> Result<()> {
    let project_root = std::env::current_dir()?;
    commands::execute(cli::parse(), &project_root)
}