aboutsummaryrefslogtreecommitdiff
path: root/node_modules/nyc/bin/nyc.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/nyc/bin/nyc.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/nyc/bin/nyc.js')
-rwxr-xr-xnode_modules/nyc/bin/nyc.js101
1 files changed, 0 insertions, 101 deletions
diff --git a/node_modules/nyc/bin/nyc.js b/node_modules/nyc/bin/nyc.js
deleted file mode 100755
index d7c070a81..000000000
--- a/node_modules/nyc/bin/nyc.js
+++ /dev/null
@@ -1,101 +0,0 @@
-#!/usr/bin/env node
-
-const configUtil = require('../lib/config-util')
-const foreground = require('foreground-child')
-var NYC
-try {
- NYC = require('../index.covered.js')
-} catch (e) {
- NYC = require('../index.js')
-}
-const processArgs = require('../lib/process-args')
-
-const sw = require('spawn-wrap')
-const wrapper = require.resolve('./wrap.js')
-
-// parse configuration and command-line arguments;
-// we keep these values in a few different forms,
-// used in the various execution contexts of nyc:
-// reporting, instrumenting subprocesses, etc.
-const yargs = configUtil.buildYargs()
-const instrumenterArgs = processArgs.hideInstrumenteeArgs()
-const config = configUtil.loadConfig(yargs.parse(instrumenterArgs))
-configUtil.addCommandsAndHelp(yargs)
-const argv = yargs.config(config).parse(instrumenterArgs)
-
-if ([
- 'check-coverage', 'report', 'instrument', 'merge'
-].indexOf(argv._[0]) !== -1) {
- // look in lib/commands for logic.
-} else if (argv._.length) {
- // if instrument is set to false,
- // enable a noop instrumenter.
- if (!argv.instrument) argv.instrumenter = './lib/instrumenters/noop'
- else argv.instrumenter = './lib/instrumenters/istanbul'
-
- var nyc = (new NYC(argv))
- if (argv.clean) {
- nyc.reset()
- } else {
- nyc.createTempDirectory()
- }
- if (argv.all) nyc.addAllFiles()
-
- var env = {
- NYC_CONFIG: JSON.stringify(argv),
- NYC_CWD: process.cwd(),
- NYC_ROOT_ID: nyc.rootId,
- NYC_INSTRUMENTER: argv.instrumenter
- }
-
- if (argv['babel-cache'] === false) {
- // babel's cache interferes with some configurations, so is
- // disabled by default. opt in by setting babel-cache=true.
- env.BABEL_DISABLE_CACHE = process.env.BABEL_DISABLE_CACHE = '1'
- }
-
- sw([wrapper], env)
-
- // Both running the test script invocation and the check-coverage run may
- // set process.exitCode. Keep track so that both children are run, but
- // a non-zero exit codes in either one leads to an overall non-zero exit code.
- process.exitCode = 0
- foreground(processArgs.hideInstrumenterArgs(
- // use the same argv descrption, but don't exit
- // for flags like --help.
- configUtil.buildYargs().parse(process.argv.slice(2))
- ), function (done) {
- var mainChildExitCode = process.exitCode
-
- if (argv.checkCoverage) {
- checkCoverage(argv)
- process.exitCode = process.exitCode || mainChildExitCode
- if (!argv.silent) report(argv)
- return done()
- } else {
- if (!argv.silent) report(argv)
- return done()
- }
- })
-} else {
- // I don't have a clue what you're doing.
- yargs.showHelp()
-}
-
-function report (argv) {
- process.env.NYC_CWD = process.cwd()
-
- var nyc = new NYC(argv)
- nyc.report()
-}
-
-function checkCoverage (argv, cb) {
- process.env.NYC_CWD = process.cwd()
-
- ;(new NYC(argv)).checkCoverage({
- lines: argv.lines,
- functions: argv.functions,
- branches: argv.branches,
- statements: argv.statements
- }, argv['per-file'])
-}