UNPKG

filelink

Version:
21 lines (15 loc) 287 B
#!/usr/bin/env node /** * Build this project. */ 'use strict' process.chdir(`${__dirname}/..`) const apeTasking = require('ape-tasking') const coz = require('coz') apeTasking.runTasks('build', [ () => coz.render([ '.*.bud', 'lib/.*.bud', 'test/.*.bud' ]) ], true)