Is there any way I can access YAML anchors?
Take this example:
shared: &shared
- common/**/*
- config/**/*
src:
- *shared
- src/**/*
backend:
- '!(**/*.tsx|**/*.less)'
If I ran load on it, I get:
{
shared: [ 'common/**/*', 'config/**/*' ],
src: [ [ 'common/**/*', 'config/**/*' ], 'src/**/*' ],
backend: [ '!(**/*.tsx|**/*.less)' ]
}
Which is expected but there is no way for me to know which of these keys are anchors or not.
Is there any way I can access YAML anchors?
Take this example:
If I ran
loadon it, I get:Which is expected but there is no way for me to know which of these keys are anchors or not.