Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/pkg-conf/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
62 lines (49 sloc)
1.8 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const path = require('path'); | |
const findUp = require('find-up'); | |
const loadJsonFile = require('load-json-file'); | |
const filepaths = new WeakMap(); | |
const filepath = conf => filepaths.get(conf); | |
const findNextCwd = pkgPath => path.resolve(path.dirname(pkgPath), '..'); | |
const addFilePath = (object, filePath) => { | |
filepaths.set(object, filePath); | |
return object; | |
}; | |
const pkgConf = (namespace, options = {}) => { | |
if (!namespace) { | |
return Promise.reject(new TypeError('Expected a namespace')); | |
} | |
return findUp('package.json', options.cwd ? {cwd: options.cwd} : {}) | |
.then(filePath => { | |
if (!filePath) { | |
return addFilePath(Object.assign({}, options.defaults), filePath); | |
} | |
return loadJsonFile(filePath).then(package_ => { | |
if (options.skipOnFalse && package_[namespace] === false) { | |
const newOptions = Object.assign({}, options, {cwd: findNextCwd(filePath)}); | |
return pkgConf(namespace, newOptions); | |
} | |
return addFilePath(Object.assign({}, options.defaults, package_[namespace]), filePath); | |
}); | |
}); | |
}; | |
const sync = (namespace, options = {}) => { | |
if (!namespace) { | |
throw new TypeError('Expected a namespace'); | |
} | |
const filePath = findUp.sync('package.json', options.cwd ? {cwd: options.cwd} : {}); | |
if (!filePath) { | |
return addFilePath(Object.assign({}, options.defaults), filePath); | |
} | |
const package_ = loadJsonFile.sync(filePath); | |
if (options.skipOnFalse && package_[namespace] === false) { | |
const newOptions = Object.assign({}, options, {cwd: findNextCwd(filePath)}); | |
return sync(namespace, newOptions); | |
} | |
return addFilePath(Object.assign({}, options.defaults, package_[namespace]), filePath); | |
}; | |
module.exports = pkgConf; | |
// TODO: Remove this for the next major release | |
module.exports.default = pkgConf; | |
module.exports.filepath = filepath; | |
module.exports.sync = sync; |