UNPKG

283 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Run report.
5 */
6
7'use strict'
8
9process.chdir(`${__dirname}/..`)
10
11const apeTasking = require('../lib')
12const apeReporting = require('ape-reporting')
13
14apeTasking.runTasks('report', [
15 () => apeReporting.sendToCodeclimate('coverage/lcov.info', {})
16], true)