UNPKG

asfs

Version:

Aynsc file system utility.

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