UNPKG

apeman-react-image

Version:
22 lines (16 loc) 308 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', 'doc/**/.*.bud', 'lib/.*.bud', 'test/.*.bud' ]) ], true)