-
-
Notifications
You must be signed in to change notification settings - Fork 780
Open
Description
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.
rvanider
Metadata
Metadata
Assignees
Labels
No labels