@decaf-ts/utils
Version:
module management utils for decaf-ts
38 lines • 1.64 kB
JavaScript
export * from "./cli/index.js";
export * from "./input/index.js";
export * from "./output/index.js";
export * from "./utils/index.js";
export * from "./writers/index.js";
/**
* @module utils
* @description Utilities and building blocks for Decaf-TS CLI and scripting.
* @summary Aggregates CLI command infrastructure, input helpers, output writers, filesystem/network utilities,
* and shared types. Consumers typically use {@link Command}, {@link UserInput}, {@link StandardOutputWriter},
* {@link printBanner}, and utilities from {@link module:utils|utils}.
*
* This entrypoint re-exports subpackages:
* - CLI framework under `./cli` (command base, options, built-in commands)
* - Input helpers under `./input` (prompting and arg parsing)
* - Output helpers under `./output` (banner and styling)
* - General utilities under `./utils` (fs, http, exec, types)
* - Writers under `./writers` (stdout/stderr processors)
*
* Note: Individual exports are documented in their source files.
*/
/**
* @description Represents the current version of the module.
* @summary Stores the version for the @decaf-ts/utils package. The build replaces
* the placeholder with the actual version number at publish time.
* @const VERSION
* @memberOf module:utils
*/
export const VERSION = "0.10.3";
/**
* @description Represents the current version of the module.
* @summary Stores the version for the @decaf-ts/utils package. The build replaces
* the placeholder with the actual version number at publish time.
* @const VERSION
* @memberOf module:utils
*/
export const PACKAGE_NAME = "@decaf-ts/utils";
//# sourceMappingURL=index.js.map