Files
wendrul 08ae91e6dd feat: add static variable and resources support to ansible (#4435)
* Add static variable and resources to ansible

* Add wasm parser to cli

* Fix pulling of resources, rs and playbooks

* Remove unused import, add publish pkg-yaml

* Update package.json

* Update generate-metadata

* Fix null fields being serialized in script metadata

* npm install
2024-09-25 15:05:53 +02:00

27 lines
395 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