Builtin pipelines
If you want to create your own pipeline based on a builtin one and do it safely, use pipeline.steps.map if you need replacing only or pipeline.steps.flatMap if you also need to add or remove steps.
pipeline.steps.map
pipeline.steps.flatMap
Then pass the result to pipe.
This way you will depend less on the internal order of the builtin pipeline steps.
For cases when you need to replace only steps.taraskevize in tarask and have better tree-shaking, you can use _pipe.
Builtin pipelines
If you want to create your own pipeline based on a builtin one and do it safely, use
pipeline.steps.map
if you need replacing only orpipeline.steps.flatMap
if you also need to add or remove steps.Then pass the result to pipe.
This way you will depend less on the internal order of the builtin pipeline steps.
For cases when you need to replace only steps.taraskevize in tarask and have better tree-shaking, you can use _pipe.