js-yaml icon indicating copy to clipboard operation
js-yaml copied to clipboard

export anchors(refs)

Open lucasyarid opened this issue 3 months ago • 0 comments

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.

lucasyarid avatar May 17 '24 13:05 lucasyarid