@bleedingdev/modern-js-utils 3.2.0-ultramodern.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +26 -0
- package/dist/cjs/cli/alias.js +82 -0
- package/dist/cjs/cli/applyOptionsChain.js +50 -0
- package/dist/cjs/cli/commands.js +69 -0
- package/dist/cjs/cli/common.js +59 -0
- package/dist/cjs/cli/config.js +39 -0
- package/dist/cjs/cli/constants.js +136 -0
- package/dist/cjs/cli/ensure.js +56 -0
- package/dist/cjs/cli/fs.js +46 -0
- package/dist/cjs/cli/get/config.js +48 -0
- package/dist/cjs/cli/get/data.js +106 -0
- package/dist/cjs/cli/get/index.js +112 -0
- package/dist/cjs/cli/index.js +212 -0
- package/dist/cjs/cli/is/config.js +86 -0
- package/dist/cjs/cli/is/env.js +52 -0
- package/dist/cjs/cli/is/index.js +79 -0
- package/dist/cjs/cli/is/project.js +147 -0
- package/dist/cjs/cli/is/type.js +84 -0
- package/dist/cjs/cli/logger.js +39 -0
- package/dist/cjs/cli/modulePath.js +87 -0
- package/dist/cjs/cli/monorepo.js +110 -0
- package/dist/cjs/cli/package.js +97 -0
- package/dist/cjs/cli/path.js +111 -0
- package/dist/cjs/cli/port.js +79 -0
- package/dist/cjs/cli/prettyInstructions.js +117 -0
- package/dist/cjs/cli/require.js +127 -0
- package/dist/cjs/cli/route.js +76 -0
- package/dist/cjs/cli/runtimeExports.js +86 -0
- package/dist/cjs/cli/tsconfig.js +51 -0
- package/dist/cjs/cli/version.js +67 -0
- package/dist/cjs/cli/watch.js +87 -0
- package/dist/cjs/compiled.js +209 -0
- package/dist/cjs/import.js +56 -0
- package/dist/cjs/index.js +72 -0
- package/dist/cjs/universal/constants.js +84 -0
- package/dist/cjs/universal/index.js +36 -0
- package/dist/cjs/universal/path.js +36 -0
- package/dist/cjs/universal/pluginDagSort.js +75 -0
- package/dist/compiled/address/index.js +171 -0
- package/dist/compiled/address/lib/address.d.ts +28 -0
- package/dist/compiled/address/package.json +1 -0
- package/dist/compiled/browserslist/index.d.ts +178 -0
- package/dist/compiled/browserslist/index.js +1329 -0
- package/dist/compiled/browserslist/license +20 -0
- package/dist/compiled/browserslist/package.json +1 -0
- package/dist/compiled/chalk/index.d.ts +415 -0
- package/dist/compiled/chalk/index.js +2368 -0
- package/dist/compiled/chalk/license +9 -0
- package/dist/compiled/chalk/package.json +1 -0
- package/dist/compiled/chokidar/anymatch/index.d.ts +19 -0
- package/dist/compiled/chokidar/fsevents.node +0 -0
- package/dist/compiled/chokidar/index.js +4162 -0
- package/dist/compiled/chokidar/index.js.LICENSE.txt +41 -0
- package/dist/compiled/chokidar/license +21 -0
- package/dist/compiled/chokidar/package.json +1 -0
- package/dist/compiled/chokidar/types/index.d.ts +188 -0
- package/dist/compiled/commander/index.js +1540 -0
- package/dist/compiled/commander/index.mjs +2 -0
- package/dist/compiled/commander/license +22 -0
- package/dist/compiled/commander/package.json +1 -0
- package/dist/compiled/commander/typings/index.d.ts +890 -0
- package/dist/compiled/debug/index.d.ts +54 -0
- package/dist/compiled/debug/index.js +621 -0
- package/dist/compiled/debug/license +20 -0
- package/dist/compiled/debug/ms/index.d.ts +25 -0
- package/dist/compiled/debug/package.json +1 -0
- package/dist/compiled/dotenv/index.js +101 -0
- package/dist/compiled/dotenv/license +23 -0
- package/dist/compiled/dotenv/package.json +1 -0
- package/dist/compiled/dotenv/types/index.d.ts +59 -0
- package/dist/compiled/dotenv-expand/index.d.ts +15 -0
- package/dist/compiled/dotenv-expand/index.js +54 -0
- package/dist/compiled/dotenv-expand/license +24 -0
- package/dist/compiled/dotenv-expand/package.json +1 -0
- package/dist/compiled/execa/index.d.ts +564 -0
- package/dist/compiled/execa/index.js +1738 -0
- package/dist/compiled/execa/license +9 -0
- package/dist/compiled/execa/package.json +1 -0
- package/dist/compiled/fast-glob/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/dist/compiled/fast-glob/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/dist/compiled/fast-glob/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/dist/compiled/fast-glob/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/dist/compiled/fast-glob/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/dist/compiled/fast-glob/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/dist/compiled/fast-glob/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/dist/compiled/fast-glob/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/dist/compiled/fast-glob/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/dist/compiled/fast-glob/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/dist/compiled/fast-glob/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/dist/compiled/fast-glob/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/dist/compiled/fast-glob/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/dist/compiled/fast-glob/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/dist/compiled/fast-glob/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/dist/compiled/fast-glob/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/dist/compiled/fast-glob/index.js +4665 -0
- package/dist/compiled/fast-glob/index.js.LICENSE.txt +38 -0
- package/dist/compiled/fast-glob/license +21 -0
- package/dist/compiled/fast-glob/out/index.d.ts +27 -0
- package/dist/compiled/fast-glob/out/managers/tasks.d.ts +22 -0
- package/dist/compiled/fast-glob/out/settings.d.ts +164 -0
- package/dist/compiled/fast-glob/out/types/index.d.ts +31 -0
- package/dist/compiled/fast-glob/package.json +1 -0
- package/dist/compiled/filesize/filesize.d.ts +131 -0
- package/dist/compiled/filesize/index.js +198 -0
- package/dist/compiled/filesize/index.js.LICENSE.txt +7 -0
- package/dist/compiled/filesize/license +28 -0
- package/dist/compiled/filesize/package.json +1 -0
- package/dist/compiled/fs-extra/index.d.ts +563 -0
- package/dist/compiled/fs-extra/index.js +2222 -0
- package/dist/compiled/fs-extra/license +15 -0
- package/dist/compiled/fs-extra/package.json +1 -0
- package/dist/compiled/glob/index.d.ts +91 -0
- package/dist/compiled/glob/index.js +2011 -0
- package/dist/compiled/glob/license +21 -0
- package/dist/compiled/glob/minimatch/index.d.ts +204 -0
- package/dist/compiled/glob/package.json +1 -0
- package/dist/compiled/globby/index.d.ts +186 -0
- package/dist/compiled/globby/index.js +690 -0
- package/dist/compiled/globby/license +9 -0
- package/dist/compiled/globby/package.json +1 -0
- package/dist/compiled/gzip-size/index.d.ts +96 -0
- package/dist/compiled/gzip-size/index.js +157 -0
- package/dist/compiled/gzip-size/license +9 -0
- package/dist/compiled/gzip-size/package.json +1 -0
- package/dist/compiled/import-lazy/index.d.ts +26 -0
- package/dist/compiled/import-lazy/index.js +45 -0
- package/dist/compiled/import-lazy/license +9 -0
- package/dist/compiled/import-lazy/package.json +1 -0
- package/dist/compiled/inquirer/index.d.ts +997 -0
- package/dist/compiled/inquirer/index.js +20167 -0
- package/dist/compiled/inquirer/index.js.LICENSE.txt +7 -0
- package/dist/compiled/inquirer/lib/objects/choice.d.ts +65 -0
- package/dist/compiled/inquirer/lib/objects/choices.d.ts +206 -0
- package/dist/compiled/inquirer/lib/objects/separator.d.ts +37 -0
- package/dist/compiled/inquirer/lib/ui/baseUI.d.ts +37 -0
- package/dist/compiled/inquirer/lib/ui/bottom-bar.d.ts +65 -0
- package/dist/compiled/inquirer/lib/ui/prompt.d.ts +104 -0
- package/dist/compiled/inquirer/license +22 -0
- package/dist/compiled/inquirer/package.json +1 -0
- package/dist/compiled/inquirer/through/index.d.ts +25 -0
- package/dist/compiled/js-yaml/index.d.ts +154 -0
- package/dist/compiled/js-yaml/index.js +2191 -0
- package/dist/compiled/js-yaml/index.mjs +2167 -0
- package/dist/compiled/js-yaml/index.mjs.LICENSE.txt +1 -0
- package/dist/compiled/js-yaml/license +21 -0
- package/dist/compiled/js-yaml/package.json +1 -0
- package/dist/compiled/json5/index.js +983 -0
- package/dist/compiled/json5/lib/index.d.ts +4 -0
- package/dist/compiled/json5/lib/parse.d.ts +15 -0
- package/dist/compiled/json5/lib/stringify.d.ts +89 -0
- package/dist/compiled/json5/package.json +1 -0
- package/dist/compiled/lodash/common/array.d.ts +2126 -0
- package/dist/compiled/lodash/common/collection.d.ts +1930 -0
- package/dist/compiled/lodash/common/common.d.ts +280 -0
- package/dist/compiled/lodash/common/date.d.ts +23 -0
- package/dist/compiled/lodash/common/function.d.ts +1446 -0
- package/dist/compiled/lodash/common/lang.d.ts +1693 -0
- package/dist/compiled/lodash/common/math.d.ts +405 -0
- package/dist/compiled/lodash/common/number.d.ts +131 -0
- package/dist/compiled/lodash/common/object.d.ts +2519 -0
- package/dist/compiled/lodash/common/seq.d.ts +210 -0
- package/dist/compiled/lodash/common/string.d.ts +788 -0
- package/dist/compiled/lodash/common/util.d.ts +1220 -0
- package/dist/compiled/lodash/index.d.ts +46 -0
- package/dist/compiled/lodash/index.js +1 -0
- package/dist/compiled/lodash/index.mjs +1 -0
- package/dist/compiled/lodash/license +47 -0
- package/dist/compiled/lodash/package.json +1 -0
- package/dist/compiled/mime-types/index.d.ts +14 -0
- package/dist/compiled/mime-types/index.js +116 -0
- package/dist/compiled/mime-types/index.js.LICENSE.txt +13 -0
- package/dist/compiled/mime-types/license +23 -0
- package/dist/compiled/mime-types/package.json +1 -0
- package/dist/compiled/minimist/index.d.ts +95 -0
- package/dist/compiled/minimist/index.js +202 -0
- package/dist/compiled/minimist/license +18 -0
- package/dist/compiled/minimist/package.json +1 -0
- package/dist/compiled/nanoid/index.d.ts +91 -0
- package/dist/compiled/nanoid/index.js +83 -0
- package/dist/compiled/nanoid/index.mjs +69 -0
- package/dist/compiled/nanoid/license +20 -0
- package/dist/compiled/nanoid/package.json +1 -0
- package/dist/compiled/ora/cli-spinners/index.d.ts +125 -0
- package/dist/compiled/ora/index.d.ts +277 -0
- package/dist/compiled/ora/index.js +3936 -0
- package/dist/compiled/ora/index.js.LICENSE.txt +1 -0
- package/dist/compiled/ora/license +9 -0
- package/dist/compiled/ora/package.json +1 -0
- package/dist/compiled/pkg-up/index.d.ts +48 -0
- package/dist/compiled/pkg-up/index.js +15 -0
- package/dist/compiled/pkg-up/license +9 -0
- package/dist/compiled/pkg-up/package.json +1 -0
- package/dist/compiled/semver/classes/comparator.d.ts +17 -0
- package/dist/compiled/semver/classes/range.d.ts +21 -0
- package/dist/compiled/semver/classes/semver.d.ts +62 -0
- package/dist/compiled/semver/functions/clean.d.ts +8 -0
- package/dist/compiled/semver/functions/cmp.d.ts +16 -0
- package/dist/compiled/semver/functions/coerce.d.ts +12 -0
- package/dist/compiled/semver/functions/compare-build.d.ts +16 -0
- package/dist/compiled/semver/functions/compare-loose.d.ts +5 -0
- package/dist/compiled/semver/functions/compare.d.ts +20 -0
- package/dist/compiled/semver/functions/diff.d.ts +13 -0
- package/dist/compiled/semver/functions/eq.d.ts +9 -0
- package/dist/compiled/semver/functions/gt.d.ts +9 -0
- package/dist/compiled/semver/functions/gte.d.ts +9 -0
- package/dist/compiled/semver/functions/inc.d.ts +15 -0
- package/dist/compiled/semver/functions/lt.d.ts +9 -0
- package/dist/compiled/semver/functions/lte.d.ts +8 -0
- package/dist/compiled/semver/functions/major.d.ts +9 -0
- package/dist/compiled/semver/functions/minor.d.ts +9 -0
- package/dist/compiled/semver/functions/neq.d.ts +9 -0
- package/dist/compiled/semver/functions/parse.d.ts +12 -0
- package/dist/compiled/semver/functions/patch.d.ts +9 -0
- package/dist/compiled/semver/functions/prerelease.d.ts +12 -0
- package/dist/compiled/semver/functions/rcompare.d.ts +15 -0
- package/dist/compiled/semver/functions/rsort.d.ts +9 -0
- package/dist/compiled/semver/functions/satisfies.d.ts +14 -0
- package/dist/compiled/semver/functions/sort.d.ts +9 -0
- package/dist/compiled/semver/functions/valid.d.ts +11 -0
- package/dist/compiled/semver/index.d.ts +133 -0
- package/dist/compiled/semver/index.js +1779 -0
- package/dist/compiled/semver/internals/identifiers.d.ts +13 -0
- package/dist/compiled/semver/license +15 -0
- package/dist/compiled/semver/package.json +1 -0
- package/dist/compiled/semver/ranges/gtr.d.ts +14 -0
- package/dist/compiled/semver/ranges/intersects.d.ts +13 -0
- package/dist/compiled/semver/ranges/ltr.d.ts +14 -0
- package/dist/compiled/semver/ranges/max-satisfying.d.ts +14 -0
- package/dist/compiled/semver/ranges/min-satisfying.d.ts +14 -0
- package/dist/compiled/semver/ranges/min-version.d.ts +10 -0
- package/dist/compiled/semver/ranges/outside.d.ts +15 -0
- package/dist/compiled/semver/ranges/simplify.d.ts +14 -0
- package/dist/compiled/semver/ranges/subset.d.ts +13 -0
- package/dist/compiled/semver/ranges/to-comparators.d.ts +9 -0
- package/dist/compiled/semver/ranges/valid.d.ts +12 -0
- package/dist/compiled/signale/index.d.ts +162 -0
- package/dist/compiled/signale/index.js +1704 -0
- package/dist/compiled/signale/package.json +1 -0
- package/dist/compiled/slash/index.d.ts +25 -0
- package/dist/compiled/slash/index.js +32 -0
- package/dist/compiled/slash/license +9 -0
- package/dist/compiled/slash/package.json +1 -0
- package/dist/compiled/strip-ansi/index.d.ts +17 -0
- package/dist/compiled/strip-ansi/index.js +34 -0
- package/dist/compiled/strip-ansi/license +9 -0
- package/dist/compiled/strip-ansi/package.json +1 -0
- package/dist/compiled/tsconfig-paths/index.js +629 -0
- package/dist/compiled/tsconfig-paths/index.mjs +2 -0
- package/dist/compiled/tsconfig-paths/lib/config-loader.d.ts +33 -0
- package/dist/compiled/tsconfig-paths/lib/filesystem.d.ts +34 -0
- package/dist/compiled/tsconfig-paths/lib/index.d.ts +5 -0
- package/dist/compiled/tsconfig-paths/lib/mapping-entry.d.ts +18 -0
- package/dist/compiled/tsconfig-paths/lib/match-path-async.d.ts +21 -0
- package/dist/compiled/tsconfig-paths/lib/match-path-sync.d.ts +32 -0
- package/dist/compiled/tsconfig-paths/lib/register.d.ts +12 -0
- package/dist/compiled/tsconfig-paths/lib/try-path.d.ts +15 -0
- package/dist/compiled/tsconfig-paths/lib/tsconfig-loader.d.ts +28 -0
- package/dist/compiled/tsconfig-paths/license +21 -0
- package/dist/compiled/tsconfig-paths/package.json +1 -0
- package/dist/compiled/upath/index.js +135 -0
- package/dist/compiled/upath/license +22 -0
- package/dist/compiled/upath/package.json +1 -0
- package/dist/compiled/upath/upath.d.ts +241 -0
- package/dist/compiled/url-join/index.d.ts +17 -0
- package/dist/compiled/url-join/index.js +61 -0
- package/dist/compiled/url-join/license +21 -0
- package/dist/compiled/url-join/package.json +1 -0
- package/dist/compiled/webpack-chain/index.js +1475 -0
- package/dist/compiled/webpack-chain/license +373 -0
- package/dist/compiled/webpack-chain/package.json +1 -0
- package/dist/compiled/webpack-chain/types/index.d.ts +599 -0
- package/dist/esm/cli/alias.mjs +31 -0
- package/dist/esm/cli/applyOptionsChain.mjs +16 -0
- package/dist/esm/cli/commands.mjs +23 -0
- package/dist/esm/cli/common.mjs +9 -0
- package/dist/esm/cli/config.mjs +5 -0
- package/dist/esm/cli/constants.mjs +30 -0
- package/dist/esm/cli/ensure.mjs +9 -0
- package/dist/esm/cli/fs.mjs +9 -0
- package/dist/esm/cli/get/config.mjs +14 -0
- package/dist/esm/cli/get/data.mjs +49 -0
- package/dist/esm/cli/get/index.mjs +18 -0
- package/dist/esm/cli/index.mjs +23 -0
- package/dist/esm/cli/is/config.mjs +37 -0
- package/dist/esm/cli/is/env.mjs +6 -0
- package/dist/esm/cli/is/index.mjs +4 -0
- package/dist/esm/cli/is/project.mjs +75 -0
- package/dist/esm/cli/is/type.mjs +26 -0
- package/dist/esm/cli/logger.mjs +1 -0
- package/dist/esm/cli/modulePath.mjs +33 -0
- package/dist/esm/cli/monorepo.mjs +50 -0
- package/dist/esm/cli/package.mjs +51 -0
- package/dist/esm/cli/path.mjs +35 -0
- package/dist/esm/cli/port.mjs +35 -0
- package/dist/esm/cli/prettyInstructions.mjs +70 -0
- package/dist/esm/cli/require.mjs +79 -0
- package/dist/esm/cli/route.mjs +36 -0
- package/dist/esm/cli/runtimeExports.mjs +42 -0
- package/dist/esm/cli/tsconfig.mjs +7 -0
- package/dist/esm/cli/version.mjs +24 -0
- package/dist/esm/cli/watch.mjs +40 -0
- package/dist/esm/compiled.mjs +45 -0
- package/dist/esm/import.mjs +9 -0
- package/dist/esm/index.mjs +3 -0
- package/dist/esm/rslib-runtime.mjs +12 -0
- package/dist/esm/universal/constants.mjs +14 -0
- package/dist/esm/universal/index.mjs +1 -0
- package/dist/esm/universal/path.mjs +2 -0
- package/dist/esm/universal/pluginDagSort.mjs +41 -0
- package/dist/esm-node/cli/alias.mjs +32 -0
- package/dist/esm-node/cli/applyOptionsChain.mjs +17 -0
- package/dist/esm-node/cli/commands.mjs +24 -0
- package/dist/esm-node/cli/common.mjs +10 -0
- package/dist/esm-node/cli/config.mjs +6 -0
- package/dist/esm-node/cli/constants.mjs +31 -0
- package/dist/esm-node/cli/ensure.mjs +10 -0
- package/dist/esm-node/cli/fs.mjs +10 -0
- package/dist/esm-node/cli/get/config.mjs +15 -0
- package/dist/esm-node/cli/get/data.mjs +50 -0
- package/dist/esm-node/cli/get/index.mjs +19 -0
- package/dist/esm-node/cli/index.mjs +24 -0
- package/dist/esm-node/cli/is/config.mjs +38 -0
- package/dist/esm-node/cli/is/env.mjs +7 -0
- package/dist/esm-node/cli/is/index.mjs +5 -0
- package/dist/esm-node/cli/is/project.mjs +76 -0
- package/dist/esm-node/cli/is/type.mjs +27 -0
- package/dist/esm-node/cli/logger.mjs +2 -0
- package/dist/esm-node/cli/modulePath.mjs +34 -0
- package/dist/esm-node/cli/monorepo.mjs +51 -0
- package/dist/esm-node/cli/package.mjs +52 -0
- package/dist/esm-node/cli/path.mjs +36 -0
- package/dist/esm-node/cli/port.mjs +36 -0
- package/dist/esm-node/cli/prettyInstructions.mjs +71 -0
- package/dist/esm-node/cli/require.mjs +80 -0
- package/dist/esm-node/cli/route.mjs +37 -0
- package/dist/esm-node/cli/runtimeExports.mjs +43 -0
- package/dist/esm-node/cli/tsconfig.mjs +8 -0
- package/dist/esm-node/cli/version.mjs +25 -0
- package/dist/esm-node/cli/watch.mjs +41 -0
- package/dist/esm-node/compiled.mjs +45 -0
- package/dist/esm-node/import.mjs +10 -0
- package/dist/esm-node/index.mjs +4 -0
- package/dist/esm-node/universal/constants.mjs +15 -0
- package/dist/esm-node/universal/index.mjs +2 -0
- package/dist/esm-node/universal/path.mjs +3 -0
- package/dist/esm-node/universal/pluginDagSort.mjs +42 -0
- package/dist/types/cli/alias.d.ts +20 -0
- package/dist/types/cli/applyOptionsChain.d.ts +3 -0
- package/dist/types/cli/commands.d.ts +8 -0
- package/dist/types/cli/common.d.ts +9 -0
- package/dist/types/cli/config.d.ts +4 -0
- package/dist/types/cli/constants.d.ts +55 -0
- package/dist/types/cli/ensure.d.ts +8 -0
- package/dist/types/cli/fs.d.ts +7 -0
- package/dist/types/cli/get/config.d.ts +1 -0
- package/dist/types/cli/get/data.d.ts +6 -0
- package/dist/types/cli/get/index.d.ts +11 -0
- package/dist/types/cli/index.d.ts +23 -0
- package/dist/types/cli/is/config.d.ts +22 -0
- package/dist/types/cli/is/env.d.ts +8 -0
- package/dist/types/cli/is/index.d.ts +4 -0
- package/dist/types/cli/is/project.d.ts +39 -0
- package/dist/types/cli/is/type.d.ts +15 -0
- package/dist/types/cli/logger.d.ts +1 -0
- package/dist/types/cli/modulePath.d.ts +5 -0
- package/dist/types/cli/monorepo.d.ts +9 -0
- package/dist/types/cli/package.d.ts +5 -0
- package/dist/types/cli/path.d.ts +11 -0
- package/dist/types/cli/port.d.ts +12 -0
- package/dist/types/cli/prettyInstructions.d.ts +9 -0
- package/dist/types/cli/require.d.ts +9 -0
- package/dist/types/cli/route.d.ts +4 -0
- package/dist/types/cli/runtimeExports.d.ts +5 -0
- package/dist/types/cli/tsconfig.d.ts +1 -0
- package/dist/types/cli/version.d.ts +4 -0
- package/dist/types/cli/watch.d.ts +8 -0
- package/dist/types/compiled.d.ts +37 -0
- package/dist/types/import.d.ts +5 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/universal/constants.d.ts +47 -0
- package/dist/types/universal/index.d.ts +1 -0
- package/dist/types/universal/path.d.ts +1 -0
- package/dist/types/universal/pluginDagSort.d.ts +1 -0
- package/package.json +174 -0
- package/rslib.config.mts +162 -0
- package/rstest.config.mts +8 -0
|
@@ -0,0 +1,1738 @@
|
|
|
1
|
+
(()=>{
|
|
2
|
+
var e = {
|
|
3
|
+
328: (e, t, n)=>{
|
|
4
|
+
"use strict";
|
|
5
|
+
const r = n(81);
|
|
6
|
+
const o = n(529);
|
|
7
|
+
const s = n(170);
|
|
8
|
+
function spawn(e, t, n) {
|
|
9
|
+
const i = o(e, t, n);
|
|
10
|
+
const a = r.spawn(i.command, i.args, i.options);
|
|
11
|
+
s.hookChildProcess(a, i);
|
|
12
|
+
return a;
|
|
13
|
+
}
|
|
14
|
+
function spawnSync(e, t, n) {
|
|
15
|
+
const i = o(e, t, n);
|
|
16
|
+
const a = r.spawnSync(i.command, i.args, i.options);
|
|
17
|
+
a.error = a.error || s.verifyENOENTSync(a.status, i);
|
|
18
|
+
return a;
|
|
19
|
+
}
|
|
20
|
+
e.exports = spawn;
|
|
21
|
+
e.exports.spawn = spawn;
|
|
22
|
+
e.exports.sync = spawnSync;
|
|
23
|
+
e.exports._parse = o;
|
|
24
|
+
e.exports._enoent = s;
|
|
25
|
+
},
|
|
26
|
+
170: (e)=>{
|
|
27
|
+
"use strict";
|
|
28
|
+
const t = "win32" === process.platform;
|
|
29
|
+
function notFoundError(e, t) {
|
|
30
|
+
return Object.assign(new Error(`${t} ${e.command} ENOENT`), {
|
|
31
|
+
code: "ENOENT",
|
|
32
|
+
errno: "ENOENT",
|
|
33
|
+
syscall: `${t} ${e.command}`,
|
|
34
|
+
path: e.command,
|
|
35
|
+
spawnargs: e.args
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
function hookChildProcess(e, n) {
|
|
39
|
+
if (!t) return;
|
|
40
|
+
const r = e.emit;
|
|
41
|
+
e.emit = function(t, o) {
|
|
42
|
+
if ("exit" === t) {
|
|
43
|
+
const t = verifyENOENT(o, n);
|
|
44
|
+
if (t) return r.call(e, "error", t);
|
|
45
|
+
}
|
|
46
|
+
return r.apply(e, arguments);
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
function verifyENOENT(e, n) {
|
|
50
|
+
if (t && 1 === e && !n.file) return notFoundError(n.original, "spawn");
|
|
51
|
+
return null;
|
|
52
|
+
}
|
|
53
|
+
function verifyENOENTSync(e, n) {
|
|
54
|
+
if (t && 1 === e && !n.file) return notFoundError(n.original, "spawnSync");
|
|
55
|
+
return null;
|
|
56
|
+
}
|
|
57
|
+
e.exports = {
|
|
58
|
+
hookChildProcess: hookChildProcess,
|
|
59
|
+
verifyENOENT: verifyENOENT,
|
|
60
|
+
verifyENOENTSync: verifyENOENTSync,
|
|
61
|
+
notFoundError: notFoundError
|
|
62
|
+
};
|
|
63
|
+
},
|
|
64
|
+
529: (e, t, n)=>{
|
|
65
|
+
"use strict";
|
|
66
|
+
const r = n(17);
|
|
67
|
+
const o = n(499);
|
|
68
|
+
const s = n(24);
|
|
69
|
+
const i = n(91);
|
|
70
|
+
const a = "win32" === process.platform;
|
|
71
|
+
const c = /\.(?:com|exe)$/i;
|
|
72
|
+
const d = /node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;
|
|
73
|
+
function detectShebang(e) {
|
|
74
|
+
e.file = o(e);
|
|
75
|
+
const t = e.file && i(e.file);
|
|
76
|
+
if (t) {
|
|
77
|
+
e.args.unshift(e.file);
|
|
78
|
+
e.command = t;
|
|
79
|
+
return o(e);
|
|
80
|
+
}
|
|
81
|
+
return e.file;
|
|
82
|
+
}
|
|
83
|
+
function parseNonShell(e) {
|
|
84
|
+
if (!a) return e;
|
|
85
|
+
const t = detectShebang(e);
|
|
86
|
+
const n = !c.test(t);
|
|
87
|
+
if (e.options.forceShell || n) {
|
|
88
|
+
const n = d.test(t);
|
|
89
|
+
e.command = r.normalize(e.command);
|
|
90
|
+
e.command = s.command(e.command);
|
|
91
|
+
e.args = e.args.map((e)=>s.argument(e, n));
|
|
92
|
+
const o = [
|
|
93
|
+
e.command
|
|
94
|
+
].concat(e.args).join(" ");
|
|
95
|
+
e.args = [
|
|
96
|
+
"/d",
|
|
97
|
+
"/s",
|
|
98
|
+
"/c",
|
|
99
|
+
`"${o}"`
|
|
100
|
+
];
|
|
101
|
+
e.command = process.env.comspec || "cmd.exe";
|
|
102
|
+
e.options.windowsVerbatimArguments = true;
|
|
103
|
+
}
|
|
104
|
+
return e;
|
|
105
|
+
}
|
|
106
|
+
function parse(e, t, n) {
|
|
107
|
+
if (t && !Array.isArray(t)) {
|
|
108
|
+
n = t;
|
|
109
|
+
t = null;
|
|
110
|
+
}
|
|
111
|
+
t = t ? t.slice(0) : [];
|
|
112
|
+
n = Object.assign({}, n);
|
|
113
|
+
const r = {
|
|
114
|
+
command: e,
|
|
115
|
+
args: t,
|
|
116
|
+
options: n,
|
|
117
|
+
file: void 0,
|
|
118
|
+
original: {
|
|
119
|
+
command: e,
|
|
120
|
+
args: t
|
|
121
|
+
}
|
|
122
|
+
};
|
|
123
|
+
return n.shell ? r : parseNonShell(r);
|
|
124
|
+
}
|
|
125
|
+
e.exports = parse;
|
|
126
|
+
},
|
|
127
|
+
24: (e)=>{
|
|
128
|
+
"use strict";
|
|
129
|
+
const t = /([()\][%!^"`<>&|;, *?])/g;
|
|
130
|
+
function escapeCommand(e) {
|
|
131
|
+
e = e.replace(t, "^$1");
|
|
132
|
+
return e;
|
|
133
|
+
}
|
|
134
|
+
function escapeArgument(e, n) {
|
|
135
|
+
e = `${e}`;
|
|
136
|
+
e = e.replace(/(\\*)"/g, '$1$1\\"');
|
|
137
|
+
e = e.replace(/(\\*)$/, "$1$1");
|
|
138
|
+
e = `"${e}"`;
|
|
139
|
+
e = e.replace(t, "^$1");
|
|
140
|
+
if (n) e = e.replace(t, "^$1");
|
|
141
|
+
return e;
|
|
142
|
+
}
|
|
143
|
+
e.exports.command = escapeCommand;
|
|
144
|
+
e.exports.argument = escapeArgument;
|
|
145
|
+
},
|
|
146
|
+
91: (e, t, n)=>{
|
|
147
|
+
"use strict";
|
|
148
|
+
const r = n(147);
|
|
149
|
+
const o = n(256);
|
|
150
|
+
function readShebang(e) {
|
|
151
|
+
const t = 150;
|
|
152
|
+
const n = Buffer.alloc(t);
|
|
153
|
+
let s;
|
|
154
|
+
try {
|
|
155
|
+
s = r.openSync(e, "r");
|
|
156
|
+
r.readSync(s, n, 0, t, 0);
|
|
157
|
+
r.closeSync(s);
|
|
158
|
+
} catch (e) {}
|
|
159
|
+
return o(n.toString());
|
|
160
|
+
}
|
|
161
|
+
e.exports = readShebang;
|
|
162
|
+
},
|
|
163
|
+
499: (e, t, n)=>{
|
|
164
|
+
"use strict";
|
|
165
|
+
const r = n(17);
|
|
166
|
+
const o = n(85);
|
|
167
|
+
const s = n(460);
|
|
168
|
+
function resolveCommandAttempt(e, t) {
|
|
169
|
+
const n = e.options.env || process.env;
|
|
170
|
+
const i = process.cwd();
|
|
171
|
+
const a = null != e.options.cwd;
|
|
172
|
+
const c = a && void 0 !== process.chdir && !process.chdir.disabled;
|
|
173
|
+
if (c) try {
|
|
174
|
+
process.chdir(e.options.cwd);
|
|
175
|
+
} catch (e) {}
|
|
176
|
+
let d;
|
|
177
|
+
try {
|
|
178
|
+
d = o.sync(e.command, {
|
|
179
|
+
path: n[s({
|
|
180
|
+
env: n
|
|
181
|
+
})],
|
|
182
|
+
pathExt: t ? r.delimiter : void 0
|
|
183
|
+
});
|
|
184
|
+
} catch (e) {} finally{
|
|
185
|
+
if (c) process.chdir(i);
|
|
186
|
+
}
|
|
187
|
+
if (d) d = r.resolve(a ? e.options.cwd : "", d);
|
|
188
|
+
return d;
|
|
189
|
+
}
|
|
190
|
+
function resolveCommand(e) {
|
|
191
|
+
return resolveCommandAttempt(e) || resolveCommandAttempt(e, true);
|
|
192
|
+
}
|
|
193
|
+
e.exports = resolveCommand;
|
|
194
|
+
},
|
|
195
|
+
632: (e, t, n)=>{
|
|
196
|
+
"use strict";
|
|
197
|
+
const r = n(17);
|
|
198
|
+
const o = n(81);
|
|
199
|
+
const s = n(328);
|
|
200
|
+
const i = n(133);
|
|
201
|
+
const a = n(136);
|
|
202
|
+
const c = n(591);
|
|
203
|
+
const d = n(324);
|
|
204
|
+
const u = n(166);
|
|
205
|
+
const { spawnedKill: l, spawnedCancel: f, setupTimeout: p, validateTimeout: m, setExitHandler: g } = n(878);
|
|
206
|
+
const { handleInput: x, getSpawnedResult: h, makeAllStream: y, validateInputSync: b } = n(533);
|
|
207
|
+
const { mergePromise: S, getSpawnedPromise: v } = n(210);
|
|
208
|
+
const { joinCommand: w, parseCommand: E, getEscapedCommand: I } = n(192);
|
|
209
|
+
const T = 100000000;
|
|
210
|
+
const getEnv = ({ env: e, extendEnv: t, preferLocal: n, localDir: r, execPath: o })=>{
|
|
211
|
+
const s = t ? {
|
|
212
|
+
...process.env,
|
|
213
|
+
...e
|
|
214
|
+
} : e;
|
|
215
|
+
if (n) return a.env({
|
|
216
|
+
env: s,
|
|
217
|
+
cwd: r,
|
|
218
|
+
execPath: o
|
|
219
|
+
});
|
|
220
|
+
return s;
|
|
221
|
+
};
|
|
222
|
+
const handleArguments = (e, t, n = {})=>{
|
|
223
|
+
const o = s._parse(e, t, n);
|
|
224
|
+
e = o.command;
|
|
225
|
+
t = o.args;
|
|
226
|
+
n = o.options;
|
|
227
|
+
n = {
|
|
228
|
+
maxBuffer: T,
|
|
229
|
+
buffer: true,
|
|
230
|
+
stripFinalNewline: true,
|
|
231
|
+
extendEnv: true,
|
|
232
|
+
preferLocal: false,
|
|
233
|
+
localDir: n.cwd || process.cwd(),
|
|
234
|
+
execPath: process.execPath,
|
|
235
|
+
encoding: "utf8",
|
|
236
|
+
reject: true,
|
|
237
|
+
cleanup: true,
|
|
238
|
+
all: false,
|
|
239
|
+
windowsHide: true,
|
|
240
|
+
...n
|
|
241
|
+
};
|
|
242
|
+
n.env = getEnv(n);
|
|
243
|
+
n.stdio = u(n);
|
|
244
|
+
if ("win32" === process.platform && "cmd" === r.basename(e, ".exe")) t.unshift("/q");
|
|
245
|
+
return {
|
|
246
|
+
file: e,
|
|
247
|
+
args: t,
|
|
248
|
+
options: n,
|
|
249
|
+
parsed: o
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
const handleOutput = (e, t, n)=>{
|
|
253
|
+
if ("string" != typeof t && !Buffer.isBuffer(t)) return void 0 === n ? void 0 : "";
|
|
254
|
+
if (e.stripFinalNewline) return i(t);
|
|
255
|
+
return t;
|
|
256
|
+
};
|
|
257
|
+
const execa = (e, t, n)=>{
|
|
258
|
+
const r = handleArguments(e, t, n);
|
|
259
|
+
const s = w(e, t);
|
|
260
|
+
const i = I(e, t);
|
|
261
|
+
m(r.options);
|
|
262
|
+
let a;
|
|
263
|
+
try {
|
|
264
|
+
a = o.spawn(r.file, r.args, r.options);
|
|
265
|
+
} catch (e) {
|
|
266
|
+
const t = new o.ChildProcess;
|
|
267
|
+
const n = Promise.reject(d({
|
|
268
|
+
error: e,
|
|
269
|
+
stdout: "",
|
|
270
|
+
stderr: "",
|
|
271
|
+
all: "",
|
|
272
|
+
command: s,
|
|
273
|
+
escapedCommand: i,
|
|
274
|
+
parsed: r,
|
|
275
|
+
timedOut: false,
|
|
276
|
+
isCanceled: false,
|
|
277
|
+
killed: false
|
|
278
|
+
}));
|
|
279
|
+
return S(t, n);
|
|
280
|
+
}
|
|
281
|
+
const u = v(a);
|
|
282
|
+
const b = p(a, r.options, u);
|
|
283
|
+
const E = g(a, r.options, b);
|
|
284
|
+
const T = {
|
|
285
|
+
isCanceled: false
|
|
286
|
+
};
|
|
287
|
+
a.kill = l.bind(null, a.kill.bind(a));
|
|
288
|
+
a.cancel = f.bind(null, a, T);
|
|
289
|
+
const handlePromise = async ()=>{
|
|
290
|
+
const [{ error: e, exitCode: t, signal: n, timedOut: o }, c, u, l] = await h(a, r.options, E);
|
|
291
|
+
const f = handleOutput(r.options, c);
|
|
292
|
+
const p = handleOutput(r.options, u);
|
|
293
|
+
const m = handleOutput(r.options, l);
|
|
294
|
+
if (e || 0 !== t || null !== n) {
|
|
295
|
+
const c = d({
|
|
296
|
+
error: e,
|
|
297
|
+
exitCode: t,
|
|
298
|
+
signal: n,
|
|
299
|
+
stdout: f,
|
|
300
|
+
stderr: p,
|
|
301
|
+
all: m,
|
|
302
|
+
command: s,
|
|
303
|
+
escapedCommand: i,
|
|
304
|
+
parsed: r,
|
|
305
|
+
timedOut: o,
|
|
306
|
+
isCanceled: T.isCanceled,
|
|
307
|
+
killed: a.killed
|
|
308
|
+
});
|
|
309
|
+
if (!r.options.reject) return c;
|
|
310
|
+
throw c;
|
|
311
|
+
}
|
|
312
|
+
return {
|
|
313
|
+
command: s,
|
|
314
|
+
escapedCommand: i,
|
|
315
|
+
exitCode: 0,
|
|
316
|
+
stdout: f,
|
|
317
|
+
stderr: p,
|
|
318
|
+
all: m,
|
|
319
|
+
failed: false,
|
|
320
|
+
timedOut: false,
|
|
321
|
+
isCanceled: false,
|
|
322
|
+
killed: false
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
const C = c(handlePromise);
|
|
326
|
+
x(a, r.options.input);
|
|
327
|
+
a.all = y(a, r.options);
|
|
328
|
+
return S(a, C);
|
|
329
|
+
};
|
|
330
|
+
e.exports = execa;
|
|
331
|
+
e.exports.sync = (e, t, n)=>{
|
|
332
|
+
const r = handleArguments(e, t, n);
|
|
333
|
+
const s = w(e, t);
|
|
334
|
+
const i = I(e, t);
|
|
335
|
+
b(r.options);
|
|
336
|
+
let a;
|
|
337
|
+
try {
|
|
338
|
+
a = o.spawnSync(r.file, r.args, r.options);
|
|
339
|
+
} catch (e) {
|
|
340
|
+
throw d({
|
|
341
|
+
error: e,
|
|
342
|
+
stdout: "",
|
|
343
|
+
stderr: "",
|
|
344
|
+
all: "",
|
|
345
|
+
command: s,
|
|
346
|
+
escapedCommand: i,
|
|
347
|
+
parsed: r,
|
|
348
|
+
timedOut: false,
|
|
349
|
+
isCanceled: false,
|
|
350
|
+
killed: false
|
|
351
|
+
});
|
|
352
|
+
}
|
|
353
|
+
const c = handleOutput(r.options, a.stdout, a.error);
|
|
354
|
+
const u = handleOutput(r.options, a.stderr, a.error);
|
|
355
|
+
if (a.error || 0 !== a.status || null !== a.signal) {
|
|
356
|
+
const e = d({
|
|
357
|
+
stdout: c,
|
|
358
|
+
stderr: u,
|
|
359
|
+
error: a.error,
|
|
360
|
+
signal: a.signal,
|
|
361
|
+
exitCode: a.status,
|
|
362
|
+
command: s,
|
|
363
|
+
escapedCommand: i,
|
|
364
|
+
parsed: r,
|
|
365
|
+
timedOut: a.error && "ETIMEDOUT" === a.error.code,
|
|
366
|
+
isCanceled: false,
|
|
367
|
+
killed: null !== a.signal
|
|
368
|
+
});
|
|
369
|
+
if (!r.options.reject) return e;
|
|
370
|
+
throw e;
|
|
371
|
+
}
|
|
372
|
+
return {
|
|
373
|
+
command: s,
|
|
374
|
+
escapedCommand: i,
|
|
375
|
+
exitCode: 0,
|
|
376
|
+
stdout: c,
|
|
377
|
+
stderr: u,
|
|
378
|
+
failed: false,
|
|
379
|
+
timedOut: false,
|
|
380
|
+
isCanceled: false,
|
|
381
|
+
killed: false
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
e.exports.command = (e, t)=>{
|
|
385
|
+
const [n, ...r] = E(e);
|
|
386
|
+
return execa(n, r, t);
|
|
387
|
+
};
|
|
388
|
+
e.exports.commandSync = (e, t)=>{
|
|
389
|
+
const [n, ...r] = E(e);
|
|
390
|
+
return execa.sync(n, r, t);
|
|
391
|
+
};
|
|
392
|
+
e.exports.node = (e, t, n = {})=>{
|
|
393
|
+
if (t && !Array.isArray(t) && "object" == typeof t) {
|
|
394
|
+
n = t;
|
|
395
|
+
t = [];
|
|
396
|
+
}
|
|
397
|
+
const r = u.node(n);
|
|
398
|
+
const o = process.execArgv.filter((e)=>!e.startsWith("--inspect"));
|
|
399
|
+
const { nodePath: s = process.execPath, nodeOptions: i = o } = n;
|
|
400
|
+
return execa(s, [
|
|
401
|
+
...i,
|
|
402
|
+
e,
|
|
403
|
+
...Array.isArray(t) ? t : []
|
|
404
|
+
], {
|
|
405
|
+
...n,
|
|
406
|
+
stdin: void 0,
|
|
407
|
+
stdout: void 0,
|
|
408
|
+
stderr: void 0,
|
|
409
|
+
stdio: r,
|
|
410
|
+
shell: false
|
|
411
|
+
});
|
|
412
|
+
};
|
|
413
|
+
},
|
|
414
|
+
192: (e)=>{
|
|
415
|
+
"use strict";
|
|
416
|
+
const normalizeArgs = (e, t = [])=>{
|
|
417
|
+
if (!Array.isArray(t)) return [
|
|
418
|
+
e
|
|
419
|
+
];
|
|
420
|
+
return [
|
|
421
|
+
e,
|
|
422
|
+
...t
|
|
423
|
+
];
|
|
424
|
+
};
|
|
425
|
+
const t = /^[\w.-]+$/;
|
|
426
|
+
const n = /"/g;
|
|
427
|
+
const escapeArg = (e)=>{
|
|
428
|
+
if ("string" != typeof e || t.test(e)) return e;
|
|
429
|
+
return `"${e.replace(n, '\\"')}"`;
|
|
430
|
+
};
|
|
431
|
+
const joinCommand = (e, t)=>normalizeArgs(e, t).join(" ");
|
|
432
|
+
const getEscapedCommand = (e, t)=>normalizeArgs(e, t).map((e)=>escapeArg(e)).join(" ");
|
|
433
|
+
const r = / +/g;
|
|
434
|
+
const parseCommand = (e)=>{
|
|
435
|
+
const t = [];
|
|
436
|
+
for (const n of e.trim().split(r)){
|
|
437
|
+
const e = t[t.length - 1];
|
|
438
|
+
if (e && e.endsWith("\\")) t[t.length - 1] = `${e.slice(0, -1)} ${n}`;
|
|
439
|
+
else t.push(n);
|
|
440
|
+
}
|
|
441
|
+
return t;
|
|
442
|
+
};
|
|
443
|
+
e.exports = {
|
|
444
|
+
joinCommand: joinCommand,
|
|
445
|
+
getEscapedCommand: getEscapedCommand,
|
|
446
|
+
parseCommand: parseCommand
|
|
447
|
+
};
|
|
448
|
+
},
|
|
449
|
+
324: (e, t, n)=>{
|
|
450
|
+
"use strict";
|
|
451
|
+
const { signalsByName: r } = n(882);
|
|
452
|
+
const getErrorPrefix = ({ timedOut: e, timeout: t, errorCode: n, signal: r, signalDescription: o, exitCode: s, isCanceled: i })=>{
|
|
453
|
+
if (e) return `timed out after ${t} milliseconds`;
|
|
454
|
+
if (i) return "was canceled";
|
|
455
|
+
if (void 0 !== n) return `failed with ${n}`;
|
|
456
|
+
if (void 0 !== r) return `was killed with ${r} (${o})`;
|
|
457
|
+
if (void 0 !== s) return `failed with exit code ${s}`;
|
|
458
|
+
return "failed";
|
|
459
|
+
};
|
|
460
|
+
const makeError = ({ stdout: e, stderr: t, all: n, error: o, signal: s, exitCode: i, command: a, escapedCommand: c, timedOut: d, isCanceled: u, killed: l, parsed: { options: { timeout: f } } })=>{
|
|
461
|
+
i = null === i ? void 0 : i;
|
|
462
|
+
s = null === s ? void 0 : s;
|
|
463
|
+
const p = void 0 === s ? void 0 : r[s].description;
|
|
464
|
+
const m = o && o.code;
|
|
465
|
+
const g = getErrorPrefix({
|
|
466
|
+
timedOut: d,
|
|
467
|
+
timeout: f,
|
|
468
|
+
errorCode: m,
|
|
469
|
+
signal: s,
|
|
470
|
+
signalDescription: p,
|
|
471
|
+
exitCode: i,
|
|
472
|
+
isCanceled: u
|
|
473
|
+
});
|
|
474
|
+
const x = `Command ${g}: ${a}`;
|
|
475
|
+
const h = "[object Error]" === Object.prototype.toString.call(o);
|
|
476
|
+
const y = h ? `${x}\n${o.message}` : x;
|
|
477
|
+
const b = [
|
|
478
|
+
y,
|
|
479
|
+
t,
|
|
480
|
+
e
|
|
481
|
+
].filter(Boolean).join("\n");
|
|
482
|
+
if (h) {
|
|
483
|
+
o.originalMessage = o.message;
|
|
484
|
+
o.message = b;
|
|
485
|
+
} else o = new Error(b);
|
|
486
|
+
o.shortMessage = y;
|
|
487
|
+
o.command = a;
|
|
488
|
+
o.escapedCommand = c;
|
|
489
|
+
o.exitCode = i;
|
|
490
|
+
o.signal = s;
|
|
491
|
+
o.signalDescription = p;
|
|
492
|
+
o.stdout = e;
|
|
493
|
+
o.stderr = t;
|
|
494
|
+
if (void 0 !== n) o.all = n;
|
|
495
|
+
if ("bufferedData" in o) delete o.bufferedData;
|
|
496
|
+
o.failed = true;
|
|
497
|
+
o.timedOut = Boolean(d);
|
|
498
|
+
o.isCanceled = u;
|
|
499
|
+
o.killed = l && !d;
|
|
500
|
+
return o;
|
|
501
|
+
};
|
|
502
|
+
e.exports = makeError;
|
|
503
|
+
},
|
|
504
|
+
878: (e, t, n)=>{
|
|
505
|
+
"use strict";
|
|
506
|
+
const r = n(37);
|
|
507
|
+
const o = n(580);
|
|
508
|
+
const s = 5000;
|
|
509
|
+
const spawnedKill = (e, t = "SIGTERM", n = {})=>{
|
|
510
|
+
const r = e(t);
|
|
511
|
+
setKillTimeout(e, t, n, r);
|
|
512
|
+
return r;
|
|
513
|
+
};
|
|
514
|
+
const setKillTimeout = (e, t, n, r)=>{
|
|
515
|
+
if (!shouldForceKill(t, n, r)) return;
|
|
516
|
+
const o = getForceKillAfterTimeout(n);
|
|
517
|
+
const s = setTimeout(()=>{
|
|
518
|
+
e("SIGKILL");
|
|
519
|
+
}, o);
|
|
520
|
+
if (s.unref) s.unref();
|
|
521
|
+
};
|
|
522
|
+
const shouldForceKill = (e, { forceKillAfterTimeout: t }, n)=>isSigterm(e) && false !== t && n;
|
|
523
|
+
const isSigterm = (e)=>e === r.constants.signals.SIGTERM || "string" == typeof e && "SIGTERM" === e.toUpperCase();
|
|
524
|
+
const getForceKillAfterTimeout = ({ forceKillAfterTimeout: e = true })=>{
|
|
525
|
+
if (true === e) return s;
|
|
526
|
+
if (!Number.isFinite(e) || e < 0) throw new TypeError(`Expected the \`forceKillAfterTimeout\` option to be a non-negative integer, got \`${e}\` (${typeof e})`);
|
|
527
|
+
return e;
|
|
528
|
+
};
|
|
529
|
+
const spawnedCancel = (e, t)=>{
|
|
530
|
+
const n = e.kill();
|
|
531
|
+
if (n) t.isCanceled = true;
|
|
532
|
+
};
|
|
533
|
+
const timeoutKill = (e, t, n)=>{
|
|
534
|
+
e.kill(t);
|
|
535
|
+
n(Object.assign(new Error("Timed out"), {
|
|
536
|
+
timedOut: true,
|
|
537
|
+
signal: t
|
|
538
|
+
}));
|
|
539
|
+
};
|
|
540
|
+
const setupTimeout = (e, { timeout: t, killSignal: n = "SIGTERM" }, r)=>{
|
|
541
|
+
if (0 === t || void 0 === t) return r;
|
|
542
|
+
let o;
|
|
543
|
+
const s = new Promise((r, s)=>{
|
|
544
|
+
o = setTimeout(()=>{
|
|
545
|
+
timeoutKill(e, n, s);
|
|
546
|
+
}, t);
|
|
547
|
+
});
|
|
548
|
+
const i = r.finally(()=>{
|
|
549
|
+
clearTimeout(o);
|
|
550
|
+
});
|
|
551
|
+
return Promise.race([
|
|
552
|
+
s,
|
|
553
|
+
i
|
|
554
|
+
]);
|
|
555
|
+
};
|
|
556
|
+
const validateTimeout = ({ timeout: e })=>{
|
|
557
|
+
if (void 0 !== e && (!Number.isFinite(e) || e < 0)) throw new TypeError(`Expected the \`timeout\` option to be a non-negative integer, got \`${e}\` (${typeof e})`);
|
|
558
|
+
};
|
|
559
|
+
const setExitHandler = async (e, { cleanup: t, detached: n }, r)=>{
|
|
560
|
+
if (!t || n) return r;
|
|
561
|
+
const s = o(()=>{
|
|
562
|
+
e.kill();
|
|
563
|
+
});
|
|
564
|
+
return r.finally(()=>{
|
|
565
|
+
s();
|
|
566
|
+
});
|
|
567
|
+
};
|
|
568
|
+
e.exports = {
|
|
569
|
+
spawnedKill: spawnedKill,
|
|
570
|
+
spawnedCancel: spawnedCancel,
|
|
571
|
+
setupTimeout: setupTimeout,
|
|
572
|
+
validateTimeout: validateTimeout,
|
|
573
|
+
setExitHandler: setExitHandler
|
|
574
|
+
};
|
|
575
|
+
},
|
|
576
|
+
210: (e)=>{
|
|
577
|
+
"use strict";
|
|
578
|
+
const t = (async ()=>{})().constructor.prototype;
|
|
579
|
+
const n = [
|
|
580
|
+
"then",
|
|
581
|
+
"catch",
|
|
582
|
+
"finally"
|
|
583
|
+
].map((e)=>[
|
|
584
|
+
e,
|
|
585
|
+
Reflect.getOwnPropertyDescriptor(t, e)
|
|
586
|
+
]);
|
|
587
|
+
const mergePromise = (e, t)=>{
|
|
588
|
+
for (const [r, o] of n){
|
|
589
|
+
const n = "function" == typeof t ? (...e)=>Reflect.apply(o.value, t(), e) : o.value.bind(t);
|
|
590
|
+
Reflect.defineProperty(e, r, {
|
|
591
|
+
...o,
|
|
592
|
+
value: n
|
|
593
|
+
});
|
|
594
|
+
}
|
|
595
|
+
return e;
|
|
596
|
+
};
|
|
597
|
+
const getSpawnedPromise = (e)=>new Promise((t, n)=>{
|
|
598
|
+
e.on("exit", (e, n)=>{
|
|
599
|
+
t({
|
|
600
|
+
exitCode: e,
|
|
601
|
+
signal: n
|
|
602
|
+
});
|
|
603
|
+
});
|
|
604
|
+
e.on("error", (e)=>{
|
|
605
|
+
n(e);
|
|
606
|
+
});
|
|
607
|
+
if (e.stdin) e.stdin.on("error", (e)=>{
|
|
608
|
+
n(e);
|
|
609
|
+
});
|
|
610
|
+
});
|
|
611
|
+
e.exports = {
|
|
612
|
+
mergePromise: mergePromise,
|
|
613
|
+
getSpawnedPromise: getSpawnedPromise
|
|
614
|
+
};
|
|
615
|
+
},
|
|
616
|
+
166: (e)=>{
|
|
617
|
+
"use strict";
|
|
618
|
+
const t = [
|
|
619
|
+
"stdin",
|
|
620
|
+
"stdout",
|
|
621
|
+
"stderr"
|
|
622
|
+
];
|
|
623
|
+
const hasAlias = (e)=>t.some((t)=>void 0 !== e[t]);
|
|
624
|
+
const normalizeStdio = (e)=>{
|
|
625
|
+
if (!e) return;
|
|
626
|
+
const { stdio: n } = e;
|
|
627
|
+
if (void 0 === n) return t.map((t)=>e[t]);
|
|
628
|
+
if (hasAlias(e)) throw new Error(`It's not possible to provide \`stdio\` in combination with one of ${t.map((e)=>`\`${e}\``).join(", ")}`);
|
|
629
|
+
if ("string" == typeof n) return n;
|
|
630
|
+
if (!Array.isArray(n)) throw new TypeError(`Expected \`stdio\` to be of type \`string\` or \`Array\`, got \`${typeof n}\``);
|
|
631
|
+
const r = Math.max(n.length, t.length);
|
|
632
|
+
return Array.from({
|
|
633
|
+
length: r
|
|
634
|
+
}, (e, t)=>n[t]);
|
|
635
|
+
};
|
|
636
|
+
e.exports = normalizeStdio;
|
|
637
|
+
e.exports.node = (e)=>{
|
|
638
|
+
const t = normalizeStdio(e);
|
|
639
|
+
if ("ipc" === t) return "ipc";
|
|
640
|
+
if (void 0 === t || "string" == typeof t) return [
|
|
641
|
+
t,
|
|
642
|
+
t,
|
|
643
|
+
t,
|
|
644
|
+
"ipc"
|
|
645
|
+
];
|
|
646
|
+
if (t.includes("ipc")) return t;
|
|
647
|
+
return [
|
|
648
|
+
...t,
|
|
649
|
+
"ipc"
|
|
650
|
+
];
|
|
651
|
+
};
|
|
652
|
+
},
|
|
653
|
+
533: (e, t, n)=>{
|
|
654
|
+
"use strict";
|
|
655
|
+
const r = n(434);
|
|
656
|
+
const o = n(981);
|
|
657
|
+
const s = n(853);
|
|
658
|
+
const handleInput = (e, t)=>{
|
|
659
|
+
if (void 0 === t || void 0 === e.stdin) return;
|
|
660
|
+
if (r(t)) t.pipe(e.stdin);
|
|
661
|
+
else e.stdin.end(t);
|
|
662
|
+
};
|
|
663
|
+
const makeAllStream = (e, { all: t })=>{
|
|
664
|
+
if (!t || !e.stdout && !e.stderr) return;
|
|
665
|
+
const n = s();
|
|
666
|
+
if (e.stdout) n.add(e.stdout);
|
|
667
|
+
if (e.stderr) n.add(e.stderr);
|
|
668
|
+
return n;
|
|
669
|
+
};
|
|
670
|
+
const getBufferedData = async (e, t)=>{
|
|
671
|
+
if (!e) return;
|
|
672
|
+
e.destroy();
|
|
673
|
+
try {
|
|
674
|
+
return await t;
|
|
675
|
+
} catch (e) {
|
|
676
|
+
return e.bufferedData;
|
|
677
|
+
}
|
|
678
|
+
};
|
|
679
|
+
const getStreamPromise = (e, { encoding: t, buffer: n, maxBuffer: r })=>{
|
|
680
|
+
if (!e || !n) return;
|
|
681
|
+
if (t) return o(e, {
|
|
682
|
+
encoding: t,
|
|
683
|
+
maxBuffer: r
|
|
684
|
+
});
|
|
685
|
+
return o.buffer(e, {
|
|
686
|
+
maxBuffer: r
|
|
687
|
+
});
|
|
688
|
+
};
|
|
689
|
+
const getSpawnedResult = async ({ stdout: e, stderr: t, all: n }, { encoding: r, buffer: o, maxBuffer: s }, i)=>{
|
|
690
|
+
const a = getStreamPromise(e, {
|
|
691
|
+
encoding: r,
|
|
692
|
+
buffer: o,
|
|
693
|
+
maxBuffer: s
|
|
694
|
+
});
|
|
695
|
+
const c = getStreamPromise(t, {
|
|
696
|
+
encoding: r,
|
|
697
|
+
buffer: o,
|
|
698
|
+
maxBuffer: s
|
|
699
|
+
});
|
|
700
|
+
const d = getStreamPromise(n, {
|
|
701
|
+
encoding: r,
|
|
702
|
+
buffer: o,
|
|
703
|
+
maxBuffer: 2 * s
|
|
704
|
+
});
|
|
705
|
+
try {
|
|
706
|
+
return await Promise.all([
|
|
707
|
+
i,
|
|
708
|
+
a,
|
|
709
|
+
c,
|
|
710
|
+
d
|
|
711
|
+
]);
|
|
712
|
+
} catch (r) {
|
|
713
|
+
return Promise.all([
|
|
714
|
+
{
|
|
715
|
+
error: r,
|
|
716
|
+
signal: r.signal,
|
|
717
|
+
timedOut: r.timedOut
|
|
718
|
+
},
|
|
719
|
+
getBufferedData(e, a),
|
|
720
|
+
getBufferedData(t, c),
|
|
721
|
+
getBufferedData(n, d)
|
|
722
|
+
]);
|
|
723
|
+
}
|
|
724
|
+
};
|
|
725
|
+
const validateInputSync = ({ input: e })=>{
|
|
726
|
+
if (r(e)) throw new TypeError("The `input` option cannot be a stream in sync mode");
|
|
727
|
+
};
|
|
728
|
+
e.exports = {
|
|
729
|
+
handleInput: handleInput,
|
|
730
|
+
makeAllStream: makeAllStream,
|
|
731
|
+
getSpawnedResult: getSpawnedResult,
|
|
732
|
+
validateInputSync: validateInputSync
|
|
733
|
+
};
|
|
734
|
+
},
|
|
735
|
+
782: (e, t, n)=>{
|
|
736
|
+
"use strict";
|
|
737
|
+
const { PassThrough: r } = n(781);
|
|
738
|
+
e.exports = (e)=>{
|
|
739
|
+
e = {
|
|
740
|
+
...e
|
|
741
|
+
};
|
|
742
|
+
const { array: t } = e;
|
|
743
|
+
let { encoding: n } = e;
|
|
744
|
+
const o = "buffer" === n;
|
|
745
|
+
let s = false;
|
|
746
|
+
if (t) s = !(n || o);
|
|
747
|
+
else n = n || "utf8";
|
|
748
|
+
if (o) n = null;
|
|
749
|
+
const i = new r({
|
|
750
|
+
objectMode: s
|
|
751
|
+
});
|
|
752
|
+
if (n) i.setEncoding(n);
|
|
753
|
+
let a = 0;
|
|
754
|
+
const c = [];
|
|
755
|
+
i.on("data", (e)=>{
|
|
756
|
+
c.push(e);
|
|
757
|
+
if (s) a = c.length;
|
|
758
|
+
else a += e.length;
|
|
759
|
+
});
|
|
760
|
+
i.getBufferedValue = ()=>{
|
|
761
|
+
if (t) return c;
|
|
762
|
+
return o ? Buffer.concat(c, a) : c.join("");
|
|
763
|
+
};
|
|
764
|
+
i.getBufferedLength = ()=>a;
|
|
765
|
+
return i;
|
|
766
|
+
};
|
|
767
|
+
},
|
|
768
|
+
981: (e, t, n)=>{
|
|
769
|
+
"use strict";
|
|
770
|
+
const { constants: r } = n(300);
|
|
771
|
+
const o = n(781);
|
|
772
|
+
const { promisify: s } = n(837);
|
|
773
|
+
const i = n(782);
|
|
774
|
+
const a = s(o.pipeline);
|
|
775
|
+
class MaxBufferError extends Error {
|
|
776
|
+
constructor(){
|
|
777
|
+
super("maxBuffer exceeded");
|
|
778
|
+
this.name = "MaxBufferError";
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
async function getStream(e, t) {
|
|
782
|
+
if (!e) throw new Error("Expected a stream");
|
|
783
|
+
t = {
|
|
784
|
+
maxBuffer: 1 / 0,
|
|
785
|
+
...t
|
|
786
|
+
};
|
|
787
|
+
const { maxBuffer: n } = t;
|
|
788
|
+
const o = i(t);
|
|
789
|
+
await new Promise((t, s)=>{
|
|
790
|
+
const rejectPromise = (e)=>{
|
|
791
|
+
if (e && o.getBufferedLength() <= r.MAX_LENGTH) e.bufferedData = o.getBufferedValue();
|
|
792
|
+
s(e);
|
|
793
|
+
};
|
|
794
|
+
(async ()=>{
|
|
795
|
+
try {
|
|
796
|
+
await a(e, o);
|
|
797
|
+
t();
|
|
798
|
+
} catch (e) {
|
|
799
|
+
rejectPromise(e);
|
|
800
|
+
}
|
|
801
|
+
})();
|
|
802
|
+
o.on("data", ()=>{
|
|
803
|
+
if (o.getBufferedLength() > n) rejectPromise(new MaxBufferError);
|
|
804
|
+
});
|
|
805
|
+
});
|
|
806
|
+
return o.getBufferedValue();
|
|
807
|
+
}
|
|
808
|
+
e.exports = getStream;
|
|
809
|
+
e.exports.buffer = (e, t)=>getStream(e, {
|
|
810
|
+
...t,
|
|
811
|
+
encoding: "buffer"
|
|
812
|
+
});
|
|
813
|
+
e.exports.array = (e, t)=>getStream(e, {
|
|
814
|
+
...t,
|
|
815
|
+
array: true
|
|
816
|
+
});
|
|
817
|
+
e.exports.MaxBufferError = MaxBufferError;
|
|
818
|
+
},
|
|
819
|
+
221: (e, t)=>{
|
|
820
|
+
"use strict";
|
|
821
|
+
Object.defineProperty(t, "__esModule", {
|
|
822
|
+
value: true
|
|
823
|
+
});
|
|
824
|
+
t.SIGNALS = void 0;
|
|
825
|
+
const n = [
|
|
826
|
+
{
|
|
827
|
+
name: "SIGHUP",
|
|
828
|
+
number: 1,
|
|
829
|
+
action: "terminate",
|
|
830
|
+
description: "Terminal closed",
|
|
831
|
+
standard: "posix"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
name: "SIGINT",
|
|
835
|
+
number: 2,
|
|
836
|
+
action: "terminate",
|
|
837
|
+
description: "User interruption with CTRL-C",
|
|
838
|
+
standard: "ansi"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
name: "SIGQUIT",
|
|
842
|
+
number: 3,
|
|
843
|
+
action: "core",
|
|
844
|
+
description: "User interruption with CTRL-\\",
|
|
845
|
+
standard: "posix"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
name: "SIGILL",
|
|
849
|
+
number: 4,
|
|
850
|
+
action: "core",
|
|
851
|
+
description: "Invalid machine instruction",
|
|
852
|
+
standard: "ansi"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
name: "SIGTRAP",
|
|
856
|
+
number: 5,
|
|
857
|
+
action: "core",
|
|
858
|
+
description: "Debugger breakpoint",
|
|
859
|
+
standard: "posix"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
name: "SIGABRT",
|
|
863
|
+
number: 6,
|
|
864
|
+
action: "core",
|
|
865
|
+
description: "Aborted",
|
|
866
|
+
standard: "ansi"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
name: "SIGIOT",
|
|
870
|
+
number: 6,
|
|
871
|
+
action: "core",
|
|
872
|
+
description: "Aborted",
|
|
873
|
+
standard: "bsd"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
name: "SIGBUS",
|
|
877
|
+
number: 7,
|
|
878
|
+
action: "core",
|
|
879
|
+
description: "Bus error due to misaligned, non-existing address or paging error",
|
|
880
|
+
standard: "bsd"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
name: "SIGEMT",
|
|
884
|
+
number: 7,
|
|
885
|
+
action: "terminate",
|
|
886
|
+
description: "Command should be emulated but is not implemented",
|
|
887
|
+
standard: "other"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
name: "SIGFPE",
|
|
891
|
+
number: 8,
|
|
892
|
+
action: "core",
|
|
893
|
+
description: "Floating point arithmetic error",
|
|
894
|
+
standard: "ansi"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
name: "SIGKILL",
|
|
898
|
+
number: 9,
|
|
899
|
+
action: "terminate",
|
|
900
|
+
description: "Forced termination",
|
|
901
|
+
standard: "posix",
|
|
902
|
+
forced: true
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
name: "SIGUSR1",
|
|
906
|
+
number: 10,
|
|
907
|
+
action: "terminate",
|
|
908
|
+
description: "Application-specific signal",
|
|
909
|
+
standard: "posix"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
name: "SIGSEGV",
|
|
913
|
+
number: 11,
|
|
914
|
+
action: "core",
|
|
915
|
+
description: "Segmentation fault",
|
|
916
|
+
standard: "ansi"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
name: "SIGUSR2",
|
|
920
|
+
number: 12,
|
|
921
|
+
action: "terminate",
|
|
922
|
+
description: "Application-specific signal",
|
|
923
|
+
standard: "posix"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
name: "SIGPIPE",
|
|
927
|
+
number: 13,
|
|
928
|
+
action: "terminate",
|
|
929
|
+
description: "Broken pipe or socket",
|
|
930
|
+
standard: "posix"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
name: "SIGALRM",
|
|
934
|
+
number: 14,
|
|
935
|
+
action: "terminate",
|
|
936
|
+
description: "Timeout or timer",
|
|
937
|
+
standard: "posix"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
name: "SIGTERM",
|
|
941
|
+
number: 15,
|
|
942
|
+
action: "terminate",
|
|
943
|
+
description: "Termination",
|
|
944
|
+
standard: "ansi"
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
name: "SIGSTKFLT",
|
|
948
|
+
number: 16,
|
|
949
|
+
action: "terminate",
|
|
950
|
+
description: "Stack is empty or overflowed",
|
|
951
|
+
standard: "other"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
name: "SIGCHLD",
|
|
955
|
+
number: 17,
|
|
956
|
+
action: "ignore",
|
|
957
|
+
description: "Child process terminated, paused or unpaused",
|
|
958
|
+
standard: "posix"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
name: "SIGCLD",
|
|
962
|
+
number: 17,
|
|
963
|
+
action: "ignore",
|
|
964
|
+
description: "Child process terminated, paused or unpaused",
|
|
965
|
+
standard: "other"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
name: "SIGCONT",
|
|
969
|
+
number: 18,
|
|
970
|
+
action: "unpause",
|
|
971
|
+
description: "Unpaused",
|
|
972
|
+
standard: "posix",
|
|
973
|
+
forced: true
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
name: "SIGSTOP",
|
|
977
|
+
number: 19,
|
|
978
|
+
action: "pause",
|
|
979
|
+
description: "Paused",
|
|
980
|
+
standard: "posix",
|
|
981
|
+
forced: true
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
name: "SIGTSTP",
|
|
985
|
+
number: 20,
|
|
986
|
+
action: "pause",
|
|
987
|
+
description: 'Paused using CTRL-Z or "suspend"',
|
|
988
|
+
standard: "posix"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
name: "SIGTTIN",
|
|
992
|
+
number: 21,
|
|
993
|
+
action: "pause",
|
|
994
|
+
description: "Background process cannot read terminal input",
|
|
995
|
+
standard: "posix"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
name: "SIGBREAK",
|
|
999
|
+
number: 21,
|
|
1000
|
+
action: "terminate",
|
|
1001
|
+
description: "User interruption with CTRL-BREAK",
|
|
1002
|
+
standard: "other"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
name: "SIGTTOU",
|
|
1006
|
+
number: 22,
|
|
1007
|
+
action: "pause",
|
|
1008
|
+
description: "Background process cannot write to terminal output",
|
|
1009
|
+
standard: "posix"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
name: "SIGURG",
|
|
1013
|
+
number: 23,
|
|
1014
|
+
action: "ignore",
|
|
1015
|
+
description: "Socket received out-of-band data",
|
|
1016
|
+
standard: "bsd"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
name: "SIGXCPU",
|
|
1020
|
+
number: 24,
|
|
1021
|
+
action: "core",
|
|
1022
|
+
description: "Process timed out",
|
|
1023
|
+
standard: "bsd"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
name: "SIGXFSZ",
|
|
1027
|
+
number: 25,
|
|
1028
|
+
action: "core",
|
|
1029
|
+
description: "File too big",
|
|
1030
|
+
standard: "bsd"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
name: "SIGVTALRM",
|
|
1034
|
+
number: 26,
|
|
1035
|
+
action: "terminate",
|
|
1036
|
+
description: "Timeout or timer",
|
|
1037
|
+
standard: "bsd"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
name: "SIGPROF",
|
|
1041
|
+
number: 27,
|
|
1042
|
+
action: "terminate",
|
|
1043
|
+
description: "Timeout or timer",
|
|
1044
|
+
standard: "bsd"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
name: "SIGWINCH",
|
|
1048
|
+
number: 28,
|
|
1049
|
+
action: "ignore",
|
|
1050
|
+
description: "Terminal window size changed",
|
|
1051
|
+
standard: "bsd"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
name: "SIGIO",
|
|
1055
|
+
number: 29,
|
|
1056
|
+
action: "terminate",
|
|
1057
|
+
description: "I/O is available",
|
|
1058
|
+
standard: "other"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
name: "SIGPOLL",
|
|
1062
|
+
number: 29,
|
|
1063
|
+
action: "terminate",
|
|
1064
|
+
description: "Watched event",
|
|
1065
|
+
standard: "other"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
name: "SIGINFO",
|
|
1069
|
+
number: 29,
|
|
1070
|
+
action: "ignore",
|
|
1071
|
+
description: "Request for process information",
|
|
1072
|
+
standard: "other"
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
name: "SIGPWR",
|
|
1076
|
+
number: 30,
|
|
1077
|
+
action: "terminate",
|
|
1078
|
+
description: "Device running out of power",
|
|
1079
|
+
standard: "systemv"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
name: "SIGSYS",
|
|
1083
|
+
number: 31,
|
|
1084
|
+
action: "core",
|
|
1085
|
+
description: "Invalid system call",
|
|
1086
|
+
standard: "other"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
name: "SIGUNUSED",
|
|
1090
|
+
number: 31,
|
|
1091
|
+
action: "terminate",
|
|
1092
|
+
description: "Invalid system call",
|
|
1093
|
+
standard: "other"
|
|
1094
|
+
}
|
|
1095
|
+
];
|
|
1096
|
+
t.SIGNALS = n;
|
|
1097
|
+
},
|
|
1098
|
+
882: (e, t, n)=>{
|
|
1099
|
+
"use strict";
|
|
1100
|
+
Object.defineProperty(t, "__esModule", {
|
|
1101
|
+
value: true
|
|
1102
|
+
});
|
|
1103
|
+
t.signalsByNumber = t.signalsByName = void 0;
|
|
1104
|
+
var r = n(37);
|
|
1105
|
+
var o = n(922);
|
|
1106
|
+
var s = n(840);
|
|
1107
|
+
const getSignalsByName = function() {
|
|
1108
|
+
const e = (0, o.getSignals)();
|
|
1109
|
+
return e.reduce(getSignalByName, {});
|
|
1110
|
+
};
|
|
1111
|
+
const getSignalByName = function(e, { name: t, number: n, description: r, supported: o, action: s, forced: i, standard: a }) {
|
|
1112
|
+
return {
|
|
1113
|
+
...e,
|
|
1114
|
+
[t]: {
|
|
1115
|
+
name: t,
|
|
1116
|
+
number: n,
|
|
1117
|
+
description: r,
|
|
1118
|
+
supported: o,
|
|
1119
|
+
action: s,
|
|
1120
|
+
forced: i,
|
|
1121
|
+
standard: a
|
|
1122
|
+
}
|
|
1123
|
+
};
|
|
1124
|
+
};
|
|
1125
|
+
const i = getSignalsByName();
|
|
1126
|
+
t.signalsByName = i;
|
|
1127
|
+
const getSignalsByNumber = function() {
|
|
1128
|
+
const e = (0, o.getSignals)();
|
|
1129
|
+
const t = s.SIGRTMAX + 1;
|
|
1130
|
+
const n = Array.from({
|
|
1131
|
+
length: t
|
|
1132
|
+
}, (t, n)=>getSignalByNumber(n, e));
|
|
1133
|
+
return Object.assign({}, ...n);
|
|
1134
|
+
};
|
|
1135
|
+
const getSignalByNumber = function(e, t) {
|
|
1136
|
+
const n = findSignalByNumber(e, t);
|
|
1137
|
+
if (void 0 === n) return {};
|
|
1138
|
+
const { name: r, description: o, supported: s, action: i, forced: a, standard: c } = n;
|
|
1139
|
+
return {
|
|
1140
|
+
[e]: {
|
|
1141
|
+
name: r,
|
|
1142
|
+
number: e,
|
|
1143
|
+
description: o,
|
|
1144
|
+
supported: s,
|
|
1145
|
+
action: i,
|
|
1146
|
+
forced: a,
|
|
1147
|
+
standard: c
|
|
1148
|
+
}
|
|
1149
|
+
};
|
|
1150
|
+
};
|
|
1151
|
+
const findSignalByNumber = function(e, t) {
|
|
1152
|
+
const n = t.find(({ name: t })=>r.constants.signals[t] === e);
|
|
1153
|
+
if (void 0 !== n) return n;
|
|
1154
|
+
return t.find((t)=>t.number === e);
|
|
1155
|
+
};
|
|
1156
|
+
const a = getSignalsByNumber();
|
|
1157
|
+
t.signalsByNumber = a;
|
|
1158
|
+
},
|
|
1159
|
+
840: (e, t)=>{
|
|
1160
|
+
"use strict";
|
|
1161
|
+
Object.defineProperty(t, "__esModule", {
|
|
1162
|
+
value: true
|
|
1163
|
+
});
|
|
1164
|
+
t.SIGRTMAX = t.getRealtimeSignals = void 0;
|
|
1165
|
+
const getRealtimeSignals = function() {
|
|
1166
|
+
const e = r - n + 1;
|
|
1167
|
+
return Array.from({
|
|
1168
|
+
length: e
|
|
1169
|
+
}, getRealtimeSignal);
|
|
1170
|
+
};
|
|
1171
|
+
t.getRealtimeSignals = getRealtimeSignals;
|
|
1172
|
+
const getRealtimeSignal = function(e, t) {
|
|
1173
|
+
return {
|
|
1174
|
+
name: `SIGRT${t + 1}`,
|
|
1175
|
+
number: n + t,
|
|
1176
|
+
action: "terminate",
|
|
1177
|
+
description: "Application-specific signal (realtime)",
|
|
1178
|
+
standard: "posix"
|
|
1179
|
+
};
|
|
1180
|
+
};
|
|
1181
|
+
const n = 34;
|
|
1182
|
+
const r = 64;
|
|
1183
|
+
t.SIGRTMAX = r;
|
|
1184
|
+
},
|
|
1185
|
+
922: (e, t, n)=>{
|
|
1186
|
+
"use strict";
|
|
1187
|
+
Object.defineProperty(t, "__esModule", {
|
|
1188
|
+
value: true
|
|
1189
|
+
});
|
|
1190
|
+
t.getSignals = void 0;
|
|
1191
|
+
var r = n(37);
|
|
1192
|
+
var o = n(221);
|
|
1193
|
+
var s = n(840);
|
|
1194
|
+
const getSignals = function() {
|
|
1195
|
+
const e = (0, s.getRealtimeSignals)();
|
|
1196
|
+
const t = [
|
|
1197
|
+
...o.SIGNALS,
|
|
1198
|
+
...e
|
|
1199
|
+
].map(normalizeSignal);
|
|
1200
|
+
return t;
|
|
1201
|
+
};
|
|
1202
|
+
t.getSignals = getSignals;
|
|
1203
|
+
const normalizeSignal = function({ name: e, number: t, description: n, action: o, forced: s = false, standard: i }) {
|
|
1204
|
+
const { signals: { [e]: a } } = r.constants;
|
|
1205
|
+
const c = void 0 !== a;
|
|
1206
|
+
const d = c ? a : t;
|
|
1207
|
+
return {
|
|
1208
|
+
name: e,
|
|
1209
|
+
number: d,
|
|
1210
|
+
description: n,
|
|
1211
|
+
supported: c,
|
|
1212
|
+
action: o,
|
|
1213
|
+
forced: s,
|
|
1214
|
+
standard: i
|
|
1215
|
+
};
|
|
1216
|
+
};
|
|
1217
|
+
},
|
|
1218
|
+
434: (e)=>{
|
|
1219
|
+
"use strict";
|
|
1220
|
+
const isStream = (e)=>null !== e && "object" == typeof e && "function" == typeof e.pipe;
|
|
1221
|
+
isStream.writable = (e)=>isStream(e) && false !== e.writable && "function" == typeof e._write && "object" == typeof e._writableState;
|
|
1222
|
+
isStream.readable = (e)=>isStream(e) && false !== e.readable && "function" == typeof e._read && "object" == typeof e._readableState;
|
|
1223
|
+
isStream.duplex = (e)=>isStream.writable(e) && isStream.readable(e);
|
|
1224
|
+
isStream.transform = (e)=>isStream.duplex(e) && "function" == typeof e._transform;
|
|
1225
|
+
e.exports = isStream;
|
|
1226
|
+
},
|
|
1227
|
+
212: (e, t, n)=>{
|
|
1228
|
+
n(147);
|
|
1229
|
+
var o;
|
|
1230
|
+
o = "win32" === process.platform || global.TESTING_WINDOWS ? n(476) : n(836);
|
|
1231
|
+
e.exports = isexe;
|
|
1232
|
+
isexe.sync = sync;
|
|
1233
|
+
function isexe(e, t, n) {
|
|
1234
|
+
if ("function" == typeof t) {
|
|
1235
|
+
n = t;
|
|
1236
|
+
t = {};
|
|
1237
|
+
}
|
|
1238
|
+
if (!n) {
|
|
1239
|
+
if ("function" != typeof Promise) throw new TypeError("callback not provided");
|
|
1240
|
+
return new Promise(function(n, r) {
|
|
1241
|
+
isexe(e, t || {}, function(e, t) {
|
|
1242
|
+
if (e) r(e);
|
|
1243
|
+
else n(t);
|
|
1244
|
+
});
|
|
1245
|
+
});
|
|
1246
|
+
}
|
|
1247
|
+
o(e, t || {}, function(e, r) {
|
|
1248
|
+
if (e) {
|
|
1249
|
+
if ("EACCES" === e.code || t && t.ignoreErrors) {
|
|
1250
|
+
e = null;
|
|
1251
|
+
r = false;
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
n(e, r);
|
|
1255
|
+
});
|
|
1256
|
+
}
|
|
1257
|
+
function sync(e, t) {
|
|
1258
|
+
try {
|
|
1259
|
+
return o.sync(e, t || {});
|
|
1260
|
+
} catch (e) {
|
|
1261
|
+
if (t && t.ignoreErrors || "EACCES" === e.code) return false;
|
|
1262
|
+
throw e;
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
},
|
|
1266
|
+
836: (e, t, n)=>{
|
|
1267
|
+
e.exports = isexe;
|
|
1268
|
+
isexe.sync = sync;
|
|
1269
|
+
var r = n(147);
|
|
1270
|
+
function isexe(e, t, n) {
|
|
1271
|
+
r.stat(e, function(e, r) {
|
|
1272
|
+
n(e, e ? false : checkStat(r, t));
|
|
1273
|
+
});
|
|
1274
|
+
}
|
|
1275
|
+
function sync(e, t) {
|
|
1276
|
+
return checkStat(r.statSync(e), t);
|
|
1277
|
+
}
|
|
1278
|
+
function checkStat(e, t) {
|
|
1279
|
+
return e.isFile() && checkMode(e, t);
|
|
1280
|
+
}
|
|
1281
|
+
function checkMode(e, t) {
|
|
1282
|
+
var n = e.mode;
|
|
1283
|
+
var r = e.uid;
|
|
1284
|
+
var o = e.gid;
|
|
1285
|
+
var s = void 0 !== t.uid ? t.uid : process.getuid && process.getuid();
|
|
1286
|
+
var i = void 0 !== t.gid ? t.gid : process.getgid && process.getgid();
|
|
1287
|
+
var a = parseInt("100", 8);
|
|
1288
|
+
var c = parseInt("010", 8);
|
|
1289
|
+
var d = parseInt("001", 8);
|
|
1290
|
+
var u = a | c;
|
|
1291
|
+
var l = n & d || n & c && o === i || n & a && r === s || n & u && 0 === s;
|
|
1292
|
+
return l;
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
476: (e, t, n)=>{
|
|
1296
|
+
e.exports = isexe;
|
|
1297
|
+
isexe.sync = sync;
|
|
1298
|
+
var r = n(147);
|
|
1299
|
+
function checkPathExt(e, t) {
|
|
1300
|
+
var n = void 0 !== t.pathExt ? t.pathExt : process.env.PATHEXT;
|
|
1301
|
+
if (!n) return true;
|
|
1302
|
+
n = n.split(";");
|
|
1303
|
+
if (-1 !== n.indexOf("")) return true;
|
|
1304
|
+
for(var r = 0; r < n.length; r++){
|
|
1305
|
+
var o = n[r].toLowerCase();
|
|
1306
|
+
if (o && e.substr(-o.length).toLowerCase() === o) return true;
|
|
1307
|
+
}
|
|
1308
|
+
return false;
|
|
1309
|
+
}
|
|
1310
|
+
function checkStat(e, t, n) {
|
|
1311
|
+
if (!e.isSymbolicLink() && !e.isFile()) return false;
|
|
1312
|
+
return checkPathExt(t, n);
|
|
1313
|
+
}
|
|
1314
|
+
function isexe(e, t, n) {
|
|
1315
|
+
r.stat(e, function(r, o) {
|
|
1316
|
+
n(r, r ? false : checkStat(o, e, t));
|
|
1317
|
+
});
|
|
1318
|
+
}
|
|
1319
|
+
function sync(e, t) {
|
|
1320
|
+
return checkStat(r.statSync(e), e, t);
|
|
1321
|
+
}
|
|
1322
|
+
},
|
|
1323
|
+
853: (e, t, n)=>{
|
|
1324
|
+
"use strict";
|
|
1325
|
+
const { PassThrough: r } = n(781);
|
|
1326
|
+
e.exports = function() {
|
|
1327
|
+
var e = [];
|
|
1328
|
+
var t = new r({
|
|
1329
|
+
objectMode: true
|
|
1330
|
+
});
|
|
1331
|
+
t.setMaxListeners(0);
|
|
1332
|
+
t.add = add;
|
|
1333
|
+
t.isEmpty = isEmpty;
|
|
1334
|
+
t.on("unpipe", remove);
|
|
1335
|
+
Array.prototype.slice.call(arguments).forEach(add);
|
|
1336
|
+
return t;
|
|
1337
|
+
function add(n) {
|
|
1338
|
+
if (Array.isArray(n)) {
|
|
1339
|
+
n.forEach(add);
|
|
1340
|
+
return this;
|
|
1341
|
+
}
|
|
1342
|
+
e.push(n);
|
|
1343
|
+
n.once("end", remove.bind(null, n));
|
|
1344
|
+
n.once("error", t.emit.bind(t, "error"));
|
|
1345
|
+
n.pipe(t, {
|
|
1346
|
+
end: false
|
|
1347
|
+
});
|
|
1348
|
+
return this;
|
|
1349
|
+
}
|
|
1350
|
+
function isEmpty() {
|
|
1351
|
+
return 0 == e.length;
|
|
1352
|
+
}
|
|
1353
|
+
function remove(n) {
|
|
1354
|
+
e = e.filter(function(e) {
|
|
1355
|
+
return e !== n;
|
|
1356
|
+
});
|
|
1357
|
+
if (!e.length && t.readable) t.end();
|
|
1358
|
+
}
|
|
1359
|
+
};
|
|
1360
|
+
},
|
|
1361
|
+
693: (e)=>{
|
|
1362
|
+
"use strict";
|
|
1363
|
+
const mimicFn = (e, t)=>{
|
|
1364
|
+
for (const n of Reflect.ownKeys(t))Object.defineProperty(e, n, Object.getOwnPropertyDescriptor(t, n));
|
|
1365
|
+
return e;
|
|
1366
|
+
};
|
|
1367
|
+
e.exports = mimicFn;
|
|
1368
|
+
e.exports["default"] = mimicFn;
|
|
1369
|
+
},
|
|
1370
|
+
136: (e, t, n)=>{
|
|
1371
|
+
"use strict";
|
|
1372
|
+
const r = n(17);
|
|
1373
|
+
const o = n(460);
|
|
1374
|
+
const npmRunPath = (e)=>{
|
|
1375
|
+
e = {
|
|
1376
|
+
cwd: process.cwd(),
|
|
1377
|
+
path: process.env[o()],
|
|
1378
|
+
execPath: process.execPath,
|
|
1379
|
+
...e
|
|
1380
|
+
};
|
|
1381
|
+
let t;
|
|
1382
|
+
let n = r.resolve(e.cwd);
|
|
1383
|
+
const s = [];
|
|
1384
|
+
while(t !== n){
|
|
1385
|
+
s.push(r.join(n, "node_modules/.bin"));
|
|
1386
|
+
t = n;
|
|
1387
|
+
n = r.resolve(n, "..");
|
|
1388
|
+
}
|
|
1389
|
+
const i = r.resolve(e.cwd, e.execPath, "..");
|
|
1390
|
+
s.push(i);
|
|
1391
|
+
return s.concat(e.path).join(r.delimiter);
|
|
1392
|
+
};
|
|
1393
|
+
e.exports = npmRunPath;
|
|
1394
|
+
e.exports["default"] = npmRunPath;
|
|
1395
|
+
e.exports.env = (t)=>{
|
|
1396
|
+
t = {
|
|
1397
|
+
env: process.env,
|
|
1398
|
+
...t
|
|
1399
|
+
};
|
|
1400
|
+
const n = {
|
|
1401
|
+
...t.env
|
|
1402
|
+
};
|
|
1403
|
+
const r = o({
|
|
1404
|
+
env: n
|
|
1405
|
+
});
|
|
1406
|
+
t.path = n[r];
|
|
1407
|
+
n[r] = e.exports(t);
|
|
1408
|
+
return n;
|
|
1409
|
+
};
|
|
1410
|
+
},
|
|
1411
|
+
591: (e, t, n)=>{
|
|
1412
|
+
"use strict";
|
|
1413
|
+
const r = n(693);
|
|
1414
|
+
const o = new WeakMap;
|
|
1415
|
+
const onetime = (e, t = {})=>{
|
|
1416
|
+
if ("function" != typeof e) throw new TypeError("Expected a function");
|
|
1417
|
+
let n;
|
|
1418
|
+
let s = 0;
|
|
1419
|
+
const i = e.displayName || e.name || "<anonymous>";
|
|
1420
|
+
const onetime = function(...r) {
|
|
1421
|
+
o.set(onetime, ++s);
|
|
1422
|
+
if (1 === s) {
|
|
1423
|
+
n = e.apply(this, r);
|
|
1424
|
+
e = null;
|
|
1425
|
+
} else if (true === t.throw) throw new Error(`Function \`${i}\` can only be called once`);
|
|
1426
|
+
return n;
|
|
1427
|
+
};
|
|
1428
|
+
r(onetime, e);
|
|
1429
|
+
o.set(onetime, s);
|
|
1430
|
+
return onetime;
|
|
1431
|
+
};
|
|
1432
|
+
e.exports = onetime;
|
|
1433
|
+
e.exports["default"] = onetime;
|
|
1434
|
+
e.exports.callCount = (e)=>{
|
|
1435
|
+
if (!o.has(e)) throw new Error(`The given function \`${e.name}\` is not wrapped by the \`onetime\` package`);
|
|
1436
|
+
return o.get(e);
|
|
1437
|
+
};
|
|
1438
|
+
},
|
|
1439
|
+
460: (e)=>{
|
|
1440
|
+
"use strict";
|
|
1441
|
+
const pathKey = (e = {})=>{
|
|
1442
|
+
const t = e.env || process.env;
|
|
1443
|
+
const n = e.platform || process.platform;
|
|
1444
|
+
if ("win32" !== n) return "PATH";
|
|
1445
|
+
return Object.keys(t).reverse().find((e)=>"PATH" === e.toUpperCase()) || "Path";
|
|
1446
|
+
};
|
|
1447
|
+
e.exports = pathKey;
|
|
1448
|
+
e.exports["default"] = pathKey;
|
|
1449
|
+
},
|
|
1450
|
+
256: (e, t, n)=>{
|
|
1451
|
+
"use strict";
|
|
1452
|
+
const r = n(609);
|
|
1453
|
+
e.exports = (e = "")=>{
|
|
1454
|
+
const t = e.match(r);
|
|
1455
|
+
if (!t) return null;
|
|
1456
|
+
const [n, o] = t[0].replace(/#! ?/, "").split(" ");
|
|
1457
|
+
const s = n.split("/").pop();
|
|
1458
|
+
if ("env" === s) return o;
|
|
1459
|
+
return o ? `${s} ${o}` : s;
|
|
1460
|
+
};
|
|
1461
|
+
},
|
|
1462
|
+
609: (e)=>{
|
|
1463
|
+
"use strict";
|
|
1464
|
+
e.exports = /^#!(.*)/;
|
|
1465
|
+
},
|
|
1466
|
+
580: (e, t, n)=>{
|
|
1467
|
+
var r = global.process;
|
|
1468
|
+
const processOk = function(e) {
|
|
1469
|
+
return e && "object" == typeof e && "function" == typeof e.removeListener && "function" == typeof e.emit && "function" == typeof e.reallyExit && "function" == typeof e.listeners && "function" == typeof e.kill && "number" == typeof e.pid && "function" == typeof e.on;
|
|
1470
|
+
};
|
|
1471
|
+
if (processOk(r)) {
|
|
1472
|
+
var o = n(491);
|
|
1473
|
+
var s = n(357);
|
|
1474
|
+
var i = /^win/i.test(r.platform);
|
|
1475
|
+
var a = n(361);
|
|
1476
|
+
if ("function" != typeof a) a = a.EventEmitter;
|
|
1477
|
+
var c;
|
|
1478
|
+
if (r.__signal_exit_emitter__) c = r.__signal_exit_emitter__;
|
|
1479
|
+
else {
|
|
1480
|
+
c = r.__signal_exit_emitter__ = new a;
|
|
1481
|
+
c.count = 0;
|
|
1482
|
+
c.emitted = {};
|
|
1483
|
+
}
|
|
1484
|
+
if (!c.infinite) {
|
|
1485
|
+
c.setMaxListeners(1 / 0);
|
|
1486
|
+
c.infinite = true;
|
|
1487
|
+
}
|
|
1488
|
+
e.exports = function(e, t) {
|
|
1489
|
+
if (!processOk(global.process)) return function() {};
|
|
1490
|
+
o.equal(typeof e, "function", "a callback must be provided for exit handler");
|
|
1491
|
+
if (false === f) p();
|
|
1492
|
+
var n = "exit";
|
|
1493
|
+
if (t && t.alwaysLast) n = "afterexit";
|
|
1494
|
+
var remove = function() {
|
|
1495
|
+
c.removeListener(n, e);
|
|
1496
|
+
if (0 === c.listeners("exit").length && 0 === c.listeners("afterexit").length) d();
|
|
1497
|
+
};
|
|
1498
|
+
c.on(n, e);
|
|
1499
|
+
return remove;
|
|
1500
|
+
};
|
|
1501
|
+
var d = function() {
|
|
1502
|
+
if (!f || !processOk(global.process)) return;
|
|
1503
|
+
f = false;
|
|
1504
|
+
s.forEach(function(e) {
|
|
1505
|
+
try {
|
|
1506
|
+
r.removeListener(e, l[e]);
|
|
1507
|
+
} catch (e) {}
|
|
1508
|
+
});
|
|
1509
|
+
r.emit = x;
|
|
1510
|
+
r.reallyExit = m;
|
|
1511
|
+
c.count -= 1;
|
|
1512
|
+
};
|
|
1513
|
+
e.exports.unload = d;
|
|
1514
|
+
var u = function(e, t, n) {
|
|
1515
|
+
if (c.emitted[e]) return;
|
|
1516
|
+
c.emitted[e] = true;
|
|
1517
|
+
c.emit(e, t, n);
|
|
1518
|
+
};
|
|
1519
|
+
var l = {};
|
|
1520
|
+
s.forEach(function(e) {
|
|
1521
|
+
l[e] = function() {
|
|
1522
|
+
if (!processOk(global.process)) return;
|
|
1523
|
+
var t = r.listeners(e);
|
|
1524
|
+
if (t.length === c.count) {
|
|
1525
|
+
d();
|
|
1526
|
+
u("exit", null, e);
|
|
1527
|
+
u("afterexit", null, e);
|
|
1528
|
+
if (i && "SIGHUP" === e) e = "SIGINT";
|
|
1529
|
+
r.kill(r.pid, e);
|
|
1530
|
+
}
|
|
1531
|
+
};
|
|
1532
|
+
});
|
|
1533
|
+
e.exports.signals = function() {
|
|
1534
|
+
return s;
|
|
1535
|
+
};
|
|
1536
|
+
var f = false;
|
|
1537
|
+
var p = function() {
|
|
1538
|
+
if (f || !processOk(global.process)) return;
|
|
1539
|
+
f = true;
|
|
1540
|
+
c.count += 1;
|
|
1541
|
+
s = s.filter(function(e) {
|
|
1542
|
+
try {
|
|
1543
|
+
r.on(e, l[e]);
|
|
1544
|
+
return true;
|
|
1545
|
+
} catch (e) {
|
|
1546
|
+
return false;
|
|
1547
|
+
}
|
|
1548
|
+
});
|
|
1549
|
+
r.emit = h;
|
|
1550
|
+
r.reallyExit = g;
|
|
1551
|
+
};
|
|
1552
|
+
e.exports.load = p;
|
|
1553
|
+
var m = r.reallyExit;
|
|
1554
|
+
var g = function(e) {
|
|
1555
|
+
if (!processOk(global.process)) return;
|
|
1556
|
+
r.exitCode = e || 0;
|
|
1557
|
+
u("exit", r.exitCode, null);
|
|
1558
|
+
u("afterexit", r.exitCode, null);
|
|
1559
|
+
m.call(r, r.exitCode);
|
|
1560
|
+
};
|
|
1561
|
+
var x = r.emit;
|
|
1562
|
+
var h = function(e, t) {
|
|
1563
|
+
if (!("exit" === e && processOk(global.process))) return x.apply(this, arguments);
|
|
1564
|
+
if (void 0 !== t) r.exitCode = t;
|
|
1565
|
+
var n = x.apply(this, arguments);
|
|
1566
|
+
u("exit", r.exitCode, null);
|
|
1567
|
+
u("afterexit", r.exitCode, null);
|
|
1568
|
+
return n;
|
|
1569
|
+
};
|
|
1570
|
+
} else e.exports = function() {
|
|
1571
|
+
return function() {};
|
|
1572
|
+
};
|
|
1573
|
+
},
|
|
1574
|
+
357: (e)=>{
|
|
1575
|
+
e.exports = [
|
|
1576
|
+
"SIGABRT",
|
|
1577
|
+
"SIGALRM",
|
|
1578
|
+
"SIGHUP",
|
|
1579
|
+
"SIGINT",
|
|
1580
|
+
"SIGTERM"
|
|
1581
|
+
];
|
|
1582
|
+
if ("win32" !== process.platform) e.exports.push("SIGVTALRM", "SIGXCPU", "SIGXFSZ", "SIGUSR2", "SIGTRAP", "SIGSYS", "SIGQUIT", "SIGIOT");
|
|
1583
|
+
if ("linux" === process.platform) e.exports.push("SIGIO", "SIGPOLL", "SIGPWR", "SIGSTKFLT", "SIGUNUSED");
|
|
1584
|
+
},
|
|
1585
|
+
133: (e)=>{
|
|
1586
|
+
"use strict";
|
|
1587
|
+
e.exports = (e)=>{
|
|
1588
|
+
const t = "string" == typeof e ? "\n" : "\n".charCodeAt();
|
|
1589
|
+
const n = "string" == typeof e ? "\r" : "\r".charCodeAt();
|
|
1590
|
+
if (e[e.length - 1] === t) e = e.slice(0, e.length - 1);
|
|
1591
|
+
if (e[e.length - 1] === n) e = e.slice(0, e.length - 1);
|
|
1592
|
+
return e;
|
|
1593
|
+
};
|
|
1594
|
+
},
|
|
1595
|
+
85: (e, t, n)=>{
|
|
1596
|
+
const r = "win32" === process.platform || "cygwin" === process.env.OSTYPE || "msys" === process.env.OSTYPE;
|
|
1597
|
+
const o = n(17);
|
|
1598
|
+
const s = r ? ";" : ":";
|
|
1599
|
+
const i = n(212);
|
|
1600
|
+
const getNotFoundError = (e)=>Object.assign(new Error(`not found: ${e}`), {
|
|
1601
|
+
code: "ENOENT"
|
|
1602
|
+
});
|
|
1603
|
+
const getPathInfo = (e, t)=>{
|
|
1604
|
+
const n = t.colon || s;
|
|
1605
|
+
const o = e.match(/\//) || r && e.match(/\\/) ? [
|
|
1606
|
+
""
|
|
1607
|
+
] : [
|
|
1608
|
+
...r ? [
|
|
1609
|
+
process.cwd()
|
|
1610
|
+
] : [],
|
|
1611
|
+
...(t.path || process.env.PATH || "").split(n)
|
|
1612
|
+
];
|
|
1613
|
+
const i = r ? t.pathExt || process.env.PATHEXT || ".EXE;.CMD;.BAT;.COM" : "";
|
|
1614
|
+
const a = r ? i.split(n) : [
|
|
1615
|
+
""
|
|
1616
|
+
];
|
|
1617
|
+
if (r) {
|
|
1618
|
+
if (-1 !== e.indexOf(".") && "" !== a[0]) a.unshift("");
|
|
1619
|
+
}
|
|
1620
|
+
return {
|
|
1621
|
+
pathEnv: o,
|
|
1622
|
+
pathExt: a,
|
|
1623
|
+
pathExtExe: i
|
|
1624
|
+
};
|
|
1625
|
+
};
|
|
1626
|
+
const which = (e, t, n)=>{
|
|
1627
|
+
if ("function" == typeof t) {
|
|
1628
|
+
n = t;
|
|
1629
|
+
t = {};
|
|
1630
|
+
}
|
|
1631
|
+
if (!t) t = {};
|
|
1632
|
+
const { pathEnv: r, pathExt: s, pathExtExe: a } = getPathInfo(e, t);
|
|
1633
|
+
const c = [];
|
|
1634
|
+
const step = (n)=>new Promise((s, i)=>{
|
|
1635
|
+
if (n === r.length) return t.all && c.length ? s(c) : i(getNotFoundError(e));
|
|
1636
|
+
const a = r[n];
|
|
1637
|
+
const d = /^".*"$/.test(a) ? a.slice(1, -1) : a;
|
|
1638
|
+
const u = o.join(d, e);
|
|
1639
|
+
const l = !d && /^\.[\\\/]/.test(e) ? e.slice(0, 2) + u : u;
|
|
1640
|
+
s(subStep(l, n, 0));
|
|
1641
|
+
});
|
|
1642
|
+
const subStep = (e, n, r)=>new Promise((o, d)=>{
|
|
1643
|
+
if (r === s.length) return o(step(n + 1));
|
|
1644
|
+
const u = s[r];
|
|
1645
|
+
i(e + u, {
|
|
1646
|
+
pathExt: a
|
|
1647
|
+
}, (s, i)=>{
|
|
1648
|
+
if (!s && i) if (!t.all) return o(e + u);
|
|
1649
|
+
else c.push(e + u);
|
|
1650
|
+
return o(subStep(e, n, r + 1));
|
|
1651
|
+
});
|
|
1652
|
+
});
|
|
1653
|
+
return n ? step(0).then((e)=>n(null, e), n) : step(0);
|
|
1654
|
+
};
|
|
1655
|
+
const whichSync = (e, t)=>{
|
|
1656
|
+
t = t || {};
|
|
1657
|
+
const { pathEnv: n, pathExt: r, pathExtExe: s } = getPathInfo(e, t);
|
|
1658
|
+
const a = [];
|
|
1659
|
+
for(let c = 0; c < n.length; c++){
|
|
1660
|
+
const d = n[c];
|
|
1661
|
+
const u = /^".*"$/.test(d) ? d.slice(1, -1) : d;
|
|
1662
|
+
const l = o.join(u, e);
|
|
1663
|
+
const f = !u && /^\.[\\\/]/.test(e) ? e.slice(0, 2) + l : l;
|
|
1664
|
+
for(let e = 0; e < r.length; e++){
|
|
1665
|
+
const n = f + r[e];
|
|
1666
|
+
try {
|
|
1667
|
+
const e = i.sync(n, {
|
|
1668
|
+
pathExt: s
|
|
1669
|
+
});
|
|
1670
|
+
if (e) if (!t.all) return n;
|
|
1671
|
+
else a.push(n);
|
|
1672
|
+
} catch (e) {}
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
if (t.all && a.length) return a;
|
|
1676
|
+
if (t.nothrow) return null;
|
|
1677
|
+
throw getNotFoundError(e);
|
|
1678
|
+
};
|
|
1679
|
+
e.exports = which;
|
|
1680
|
+
which.sync = whichSync;
|
|
1681
|
+
},
|
|
1682
|
+
491: (e)=>{
|
|
1683
|
+
"use strict";
|
|
1684
|
+
e.exports = require("assert");
|
|
1685
|
+
},
|
|
1686
|
+
300: (e)=>{
|
|
1687
|
+
"use strict";
|
|
1688
|
+
e.exports = require("buffer");
|
|
1689
|
+
},
|
|
1690
|
+
81: (e)=>{
|
|
1691
|
+
"use strict";
|
|
1692
|
+
e.exports = require("child_process");
|
|
1693
|
+
},
|
|
1694
|
+
361: (e)=>{
|
|
1695
|
+
"use strict";
|
|
1696
|
+
e.exports = require("events");
|
|
1697
|
+
},
|
|
1698
|
+
147: (e)=>{
|
|
1699
|
+
"use strict";
|
|
1700
|
+
e.exports = require("fs");
|
|
1701
|
+
},
|
|
1702
|
+
37: (e)=>{
|
|
1703
|
+
"use strict";
|
|
1704
|
+
e.exports = require("os");
|
|
1705
|
+
},
|
|
1706
|
+
17: (e)=>{
|
|
1707
|
+
"use strict";
|
|
1708
|
+
e.exports = require("path");
|
|
1709
|
+
},
|
|
1710
|
+
781: (e)=>{
|
|
1711
|
+
"use strict";
|
|
1712
|
+
e.exports = require("stream");
|
|
1713
|
+
},
|
|
1714
|
+
837: (e)=>{
|
|
1715
|
+
"use strict";
|
|
1716
|
+
e.exports = require("util");
|
|
1717
|
+
}
|
|
1718
|
+
};
|
|
1719
|
+
var t = {};
|
|
1720
|
+
function __nccwpck_require__(n) {
|
|
1721
|
+
var r = t[n];
|
|
1722
|
+
if (void 0 !== r) return r.exports;
|
|
1723
|
+
var o = t[n] = {
|
|
1724
|
+
exports: {}
|
|
1725
|
+
};
|
|
1726
|
+
var s = true;
|
|
1727
|
+
try {
|
|
1728
|
+
e[n](o, o.exports, __nccwpck_require__);
|
|
1729
|
+
s = false;
|
|
1730
|
+
} finally{
|
|
1731
|
+
if (s) delete t[n];
|
|
1732
|
+
}
|
|
1733
|
+
return o.exports;
|
|
1734
|
+
}
|
|
1735
|
+
if (void 0 !== __nccwpck_require__) __nccwpck_require__.ab = __dirname + "/";
|
|
1736
|
+
var n = __nccwpck_require__(632);
|
|
1737
|
+
module.exports = n;
|
|
1738
|
+
})();
|