UNPKG

257 BJavaScriptView Raw
1/**
2 * ape framework module for tasks
3 * @module ape-tasking
4 */
5
6'use strict'
7
8
9const execcli = require('./execcli')
10const runTasks = require('./run_tasks')
11
12exports.execcli = execcli
13exports.runTasks = runTasks
14
15module.exports = {
16 execcli,
17 runTasks
18}