| 1234567891011121314151617181920212223242526272829303132333435363738 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.program = void 0;
- var commander = _interopRequireWildcard(require("commander"), true);
- function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
- const program = exports.program = commander.default.program;
- function collect(value, previousValue) {
- if (typeof value !== "string") return previousValue;
- const values = value.split(",");
- if (previousValue) {
- previousValue.push(...values);
- return previousValue;
- }
- return values;
- }
- program.name("babel-node");
- program.option("-e, --eval [script]", "Evaluate script");
- program.option("--no-babelrc", "Specify whether or not to use .babelrc and .babelignore files");
- program.option("-r, --require [module]", "Require module");
- program.option("-p, --print [code]", "Evaluate script and print result");
- program.option("-o, --only [globs]", "A comma-separated list of glob patterns to compile", collect);
- program.option("-i, --ignore [globs]", "A comma-separated list of glob patterns to skip compiling", collect);
- program.option("-x, --extensions [extensions]", "List of extensions to hook into [.es6,.js,.es,.jsx,.mjs]", collect);
- program.option("--config-file [path]", "Path to the babel config file to use. Defaults to working directory babel.config.js");
- program.option("--env-name [name]", "The name of the 'env' to use when loading configs and plugins. " + "Defaults to the value of BABEL_ENV, or else NODE_ENV, or else 'development'.");
- program.option("--root-mode [mode]", "The project-root resolution mode. " + "One of 'root' (the default), 'upward', or 'upward-optional'.");
- program.option("-w, --plugins [string]", "", collect);
- program.option("-b, --presets [string]", "", collect);
- {
- program.allowUnknownOption(true);
- }
- program.version("7.28.0");
- program.usage(`[options] [ -e "script" | script.js ] [--] [arguments]`);
- //# sourceMappingURL=program-setup.js.map
|