You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
391 B
22 lines
391 B
2 years ago
|
#!/usr/bin/env node
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
import "../tools/exit.cjs";
|
||
|
|
||
|
import fs from "fs";
|
||
|
import path from "path";
|
||
|
import program from "commander";
|
||
|
|
||
|
import { run_cli } from "../lib/cli.js";
|
||
|
|
||
|
const packageJson = {
|
||
|
name: "terser",
|
||
|
version: "experimental module CLI"
|
||
|
};
|
||
|
|
||
|
run_cli({ program, packageJson, fs, path }).catch((error) => {
|
||
|
console.error(error);
|
||
|
process.exitCode = 1;
|
||
|
});
|