mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
abc6b12d68
* feat: WAC workflow diagram visualization in script editor Add WASM-powered workflow diagram for WAC scripts in the script editor, inspired by Cloudflare's workflow diagrams approach. Parses WAC code client-side via WASM and renders an interactive DAG using @xyflow/svelte. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: show WAC diagram on script detail page Show the workflow diagram below the run form on the script detail page for WAC scripts, matching how flows display their graph. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: handle try/catch and while loops in WAC diagram Instead of rejecting these patterns with validation errors, render them as graph nodes: - try/catch → Branch node with "try"/"catch" edge labels - while loops → LoopStart/LoopEnd with condition as iter_source Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore: remove dead code from WAC parser and add pkg-wac to publish script Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore: use published windmill-parser-wasm-wac@1.668.5 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: handle undefined language prop in WacDiagram usage Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: resolve windmill-parser-wasm-wac from npm registry in lockfile Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: create actual merge nodes for branch/try-catch convergence points Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
45 lines
677 B
Bash
Executable File
45 lines
677 B
Bash
Executable File
#!/bin/bash
|
|
set -eou pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
args=${1:-}
|
|
|
|
pushd "pkg-ts" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-regex" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-py" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-go" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-php" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-rust" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-yaml" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-csharp" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-nu" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-java" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-asset" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-py-imports" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-wac" && npm publish ${args}
|
|
popd
|