mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 00:03:07 +00:00
* 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>
15 lines
512 B
TypeScript
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"; |