UNPKG

@rnm/tscx

Version:

A tsc wrapper with many convenient features.

11 lines (8 loc) 217 B
#!/usr/bin/env node import process from "node:process"; import { remove } from "./remove.ts"; const filepath = process.argv[2]; if (!filepath) { throw new Error("File path is required"); } await remove(filepath);