UNPKG

@expo/cli

Version:
101 lines (100 loc) 3.5 kB
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "expoConfig", { enumerable: true, get: function() { return expoConfig; } }); function _chalk() { const data = /*#__PURE__*/ _interop_require_default(require("chalk")); _chalk = function() { return data; }; return data; } const _args = require("../utils/args"); function _interop_require_default(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interop_require_wildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = { __proto__: null }; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for(var key in obj){ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } const expoConfig = async (argv)=>{ const args = (0, _args.assertArgs)({ // Types '--help': Boolean, '--full': Boolean, '--json': Boolean, '--type': String, // Aliases '-h': '--help', '-t': '--type' }, argv); if (args['--help']) { (0, _args.printHelp)(`Show the project config`, (0, _chalk().default)`npx expo config {dim <dir>}`, [ (0, _chalk().default)`<dir> Directory of the Expo project. {dim Default: Current working directory}`, `--full Include all project config data`, `--json Output in JSON format`, `-t, --type <public|prebuild|introspect> Type of config to show`, `-h, --help Usage info` ].join('\n')); } // Load modules after the help prompt so `npx expo config -h` shows as fast as possible. const [// ./configAsync { configAsync }, // ../utils/errors { logCmdError }] = await Promise.all([ Promise.resolve().then(()=>/*#__PURE__*/ _interop_require_wildcard(require("./configAsync.js"))), Promise.resolve().then(()=>/*#__PURE__*/ _interop_require_wildcard(require("../utils/errors.js"))) ]); return configAsync((0, _args.getProjectRoot)(args), { // Parsed options full: args['--full'], json: args['--json'], type: args['--type'] }).catch(logCmdError); }; //# sourceMappingURL=index.js.map