UNPKG

abind

Version:

Auto bind instance methods of classes.

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