From 3c51c3be85bb0d1bdb87ea0d6632f1c256912f27 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sun, 6 Oct 2019 21:37:45 +0200 Subject: build: Add some required modules for node --- node_modules/cosmiconfig/lib/loadDefinedFile.js | 66 +++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 node_modules/cosmiconfig/lib/loadDefinedFile.js (limited to 'node_modules/cosmiconfig/lib/loadDefinedFile.js') diff --git a/node_modules/cosmiconfig/lib/loadDefinedFile.js b/node_modules/cosmiconfig/lib/loadDefinedFile.js new file mode 100644 index 0000000..433d83c --- /dev/null +++ b/node_modules/cosmiconfig/lib/loadDefinedFile.js @@ -0,0 +1,66 @@ +'use strict'; + +var yaml = require('js-yaml'); +var requireFromString = require('require-from-string'); +var readFile = require('./readFile'); +var parseJson = require('./parseJson'); + +module.exports = function (filepath, options) { + return readFile(filepath, { throwNotFound: true }).then(function (content) { + var parsedConfig = (function () { + switch (options.format) { + case 'json': + return parseJson(content, filepath); + case 'yaml': + return yaml.safeLoad(content, { + filename: filepath, + }); + case 'js': + return requireFromString(content, filepath); + default: + return tryAllParsing(content, filepath); + } + })(); + + if (!parsedConfig) { + throw new Error( + 'Failed to parse "' + filepath + '" as JSON, JS, or YAML.' + ); + } + + return { + config: parsedConfig, + filepath: filepath, + }; + }); +}; + +function tryAllParsing(content, filepath) { + return tryYaml(content, filepath, function () { + return tryRequire(content, filepath, function () { + return null; + }); + }); +} + +function tryYaml(content, filepath, cb) { + try { + var result = yaml.safeLoad(content, { + filename: filepath, + }); + if (typeof result === 'string') { + return cb(); + } + return result; + } catch (e) { + return cb(); + } +} + +function tryRequire(content, filepath, cb) { + try { + return requireFromString(content, filepath); + } catch (e) { + return cb(); + } +} -- cgit v1.2.3