Files
windmill/cli/src/core/constants.ts
T
Ruben Fiszel a935d06c8e chore(main): release 1.760.1 (#10142)
* chore(main): release 1.760.1

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com>
2026-07-15 21:29:39 +02:00

14 lines
573 B
TypeScript

/**
* Shared constants used across the CLI.
* This file should have minimal imports to avoid circular dependencies.
*/
export const WM_FORK_PREFIX = "wm-fork";
// CLI version — source of truth. Release tooling (.github/change-versions*.sh)
// rewrites this line. Kept here, rather than in main.ts, so low-level modules
// (e.g. utils.ts) can read it without importing main.ts and creating a circular
// dependency (main → workspace → utils → main) that triggers a TDZ.
// Re-exported from main.ts for backwards compatibility.
export const VERSION = "1.760.1";