Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(deps): update deps to address warning in cross-spawn (#141)
  • Loading branch information
bcoe committed Sep 6, 2019
1 parent 2289302 commit 4b66221
Show file tree
Hide file tree
Showing 5 changed files with 781 additions and 671 deletions.
2 changes: 1 addition & 1 deletion lib/parse-args.js
Expand Up @@ -5,7 +5,7 @@ const Yargs = require('yargs/yargs')
const parser = require('yargs-parser')
const { resolve } = require('path')

const configPath = findUp.sync(['.c8rc', '.c8rc.json', '.nycrc', `.nycrc.json`])
const configPath = findUp.sync(['.c8rc', '.c8rc.json', '.nycrc', '.nycrc.json'])
const config = configPath ? JSON.parse(readFileSync(configPath)) : {}

function buildYargs (withCommands = false) {
Expand Down
1 change: 1 addition & 0 deletions lib/report.js
Expand Up @@ -34,6 +34,7 @@ class Report {
this.omitRelative = omitRelative
this.wrapperLength = wrapperLength
}

async run () {
const map = await this.getCoverageMapFromAllCoverageFiles()
var context = libReport.createContext({
Expand Down

0 comments on commit 4b66221

Please sign in to comment.