Server IP : 150.95.80.236 / Your IP : 18.217.110.145 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/api-uat.pcu.in.th/node_modules/@babel/core/lib/config/files/ |
Upload File : |
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.findPackageData = findPackageData; function _path() { const data = require("path"); _path = function () { return data; }; return data; } var _utils = require("./utils.js"); var _configError = require("../../errors/config-error.js"); const PACKAGE_FILENAME = "package.json"; const readConfigPackage = (0, _utils.makeStaticFileCache)((filepath, content) => { let options; try { options = JSON.parse(content); } catch (err) { throw new _configError.default(`Error while parsing JSON - ${err.message}`, filepath); } if (!options) throw new Error(`${filepath}: No config detected`); if (typeof options !== "object") { throw new _configError.default(`Config returned typeof ${typeof options}`, filepath); } if (Array.isArray(options)) { throw new _configError.default(`Expected config object but found array`, filepath); } return { filepath, dirname: _path().dirname(filepath), options }; }); function* findPackageData(filepath) { let pkg = null; const directories = []; let isPackage = true; let dirname = _path().dirname(filepath); while (!pkg && _path().basename(dirname) !== "node_modules") { directories.push(dirname); pkg = yield* readConfigPackage(_path().join(dirname, PACKAGE_FILENAME)); const nextLoc = _path().dirname(dirname); if (dirname === nextLoc) { isPackage = false; break; } dirname = nextLoc; } return { filepath, directories, pkg, isPackage }; } 0 && 0; //# sourceMappingURL=package.js.map