Adds the ability to import yaml files to Node.js.
node --import=node-yaml-loader myscript.js
# file.yaml
description: 'This is a test file.'
// myscript.js import someYamlFile from './path/to/file.yaml' with { type: 'yaml' };
console.log(someYamlFile); // Output: { description: "This is a test file." }