UNPKG

277 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Build the project.
5 */
6
7'use strict'
8
9process.chdir(`${__dirname}/..`)
10
11const { runTasks } = require('ape-tasking')
12const coz = require('coz')
13
14runTasks('build', [
15 () => coz.render([
16 '.*.bud',
17 'lib/.*.bud',
18 'test/.*.bud'
19 ])
20], true)