Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

shortstop-yaml

jasisk1.6kISC1.0.0

shortstop handler to parse yaml

shortstop, yaml

readme

shortstop-yaml

Build Status

Example

const shortstop = require('shortstop');
const yaml = require('shortstop-yaml');

const resolver = shortstop.create();

resolver.use('yaml', yaml());

resolver.resolve({obj: 'yaml:path/to/file.yaml'}, (err, contents) => {
  // ...  
});