UNPKG

sheetxl

Version:

SheetXL - Command line tool

24 lines (23 loc) 778 B
/** * @license sheetxl - SheetXL - Command line tool - v0.7.26 * * (C) 2025-present SheetXL Inc. & Michael T. Ford * License: The license can be found at https://www.sheetxl.com/license. */ import { u as e, x as t } from "../cli.js"; import "chalk"; import "fs"; import "path"; import "commander"; const i = async (i2, o) => { if ((await e.getDetails()).isEval()) return void t.log("No License to deactivate."); const a = await e.setLicenseKey("eval", true); if (a.hasExceptions()) t.log("✅ License key successfully removed."); else { t.log("⚠️ License deactivation completed with exceptions:"), a.getExceptions().forEach((e2) => t.log(` - ${e2}`)); (o?.program.opts()?.quiet ?? false) || await e.printDetails(true); } }; export { i as default };