Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add flag to not load any default pipeline #4899

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/libs/configuration/resources/pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ for Multi-API version generators (ie, based using `imodeler2` ).
Avoiding conflicts is done thru additional metadata specified in the
`x-ms-metadata` extension node.

```yaml
```yaml !$(no-default-pipeline)
pipeline:
openapi-document/multi-api-merger:
input: tree-shaker
Expand Down Expand Up @@ -40,7 +40,7 @@ pipeline:
input-artifact: profile-filter-log
```

```yaml $(pipeline-model) == 'v3'
```yaml $(pipeline-model) == 'v3' && !$(no-default-pipeline)
pass-thru:
- api-version-parameter-handler

Expand Down Expand Up @@ -73,7 +73,7 @@ and joins the collections back into a single pipeline (it splits at load time.)
The final step is the `openapi-document/identity`, which is the pipeline input
for Single-API version generators (ie, based using `imodeler1` ).

```yaml !$(pipeline-model) || $(pipeline-model) == 'v2'
```yaml (!$(pipeline-model) || $(pipeline-model) == 'v2') && !$(no-default-pipeline)
pipeline:
openapi-document/compose:
input: openapi-document/model-deduplicator # just before deduplication.
Expand Down
Loading