11 lines
322 B
JavaScript
11 lines
322 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
const JsYaml = require('js-yaml');
|
|
|
|
// This will transform YAML files to JSON strings
|
|
module.exports = {
|
|
process: (sourceContent) => {
|
|
const jsonContent = JsYaml.load(sourceContent);
|
|
const json = JSON.stringify(jsonContent);
|
|
return `module.exports = ${json}`;
|
|
},
|
|
};
|