Files
windmill/cli/windmill-utils-internal/src/index.ts
T
centdixandAlexander Petric 59f39d860a chore(cli): better folder structure + add config utils (#6319)
* organize in folders

* add config command

* fix

* cleaning

* move utility functions

* merge

* only show token with option

* only show token with option

* fix

* remove config command

* add config utils

* change paths

* nit

* clean path assigner

---------

Co-authored-by: Alexander Petric <alpetric@users.noreply.github.com>
2025-08-05 13:59:07 +00:00

15 lines
512 B
TypeScript

/**
* @fileoverview Main entry point for windmill-utils-internal package
*
* This module provides utilities for handling Windmill flows, scripts, and schemas:
* - Inline script extraction and replacement
* - Path utilities for different programming languages
* - Schema parsing and conversion utilities
* - Cross-platform path constants
*/
export * from "./inline-scripts";
export * from "./path-utils";
export * from "./parse";
export * from "./config";
export { SEP, DELIMITER } from "./constants";