mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 08:01:26 +00:00
12 lines
310 B
Bash
Executable File
12 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
npx @redocly/openapi-cli@latest bundle openapi.yaml > openapi-bundled.yaml
|
|
|
|
|
|
npx @redocly/openapi-cli@latest bundle openapi-bundled.yaml --ext yaml -d > openapi-deref.yaml
|
|
npx @redocly/openapi-cli@latest bundle openapi-bundled.yaml --ext json > openapi-deref.json
|
|
|
|
|
|
rm openapi-bundled.yaml
|