MapYamlExtension extension

Extension methods for Map to access YAML configuration values.

This extension provides easy access to common YAML configuration values with appropriate defaults for the Morpheme CLI.

Example usage:

final config = loadYaml('morpheme.yaml');
final projectName = config.projectName;
final concurrent = config.concurrent;
on

Properties

concurrent int

Available on Map, provided by the MapYamlExtension extension

Gets the concurrent value from YAML configuration.
no setter
projectName String

Available on Map, provided by the MapYamlExtension extension

Gets the project name from YAML configuration.
no setter