mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 08:01:38 +00:00
10befb995d
* add base struct * feat resolve interface and type declarion in entrypoint param's function * nits * fix reset dependencies * update package * fix handle infinite recursion * add depth level and handle enum for referenced type * nits * nits * nits * perf * fix * done * fix schema form cache inconsistency * fix default type and nits * remove * update Object typ for parser * one level ref from from parent when resolving types and use format for resource * update cli and use resource type * nits * update parsers * fix: use specific parser versions --------- Co-authored-by: HugoCasa <hugo@casademont.ch>
36 lines
533 B
Bash
Executable File
36 lines
533 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
|