source: trip-planner-front/node_modules/terser/bin/terser.mjs@ bdd6491

Last change on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 386 bytes
Line 
1#!/usr/bin/env node
2
3"use strict";
4
5import "../tools/exit.cjs";
6
7import fs from "fs"
8import path from "path"
9import program from "commander"
10
11import { run_cli } from "../lib/cli.js"
12
13const packageJson = {
14 name: "terser",
15 version: "experimental module CLI"
16}
17
18run_cli({ program, packageJson, fs, path }).catch((error) => {
19 console.error(error);
20 process.exitCode = 1;
21});
Note: See TracBrowser for help on using the repository browser.