UNPKG

sls3-legacy

Version:

SLS3 Legacy - A fork of Serverless Framework v3

27 lines (22 loc) 639 B
'use strict'; const yaml = require('js-yaml'); const resolve = require('json-refs').resolveRefs; class YamlParser { constructor(serverless) { this.serverless = serverless; } async parse(yamlFilePath) { const root = this.serverless.utils.readFileSync(yamlFilePath); const options = { filter: ['relative', 'remote'], loaderOptions: { processContent: (res, callback) => { callback(null, yaml.load(res.text)); }, }, location: yamlFilePath, }; return resolve(root, options).then((res) => res.resolved); } } module.exports = YamlParser;