UNPKG

kotatsu

Version:

Straightforward command line tool to setup a development environment for modern JavaScript.

17 lines (15 loc) 354 B
/** * Kotatsu Library * ================ * * Exposing the API. */ var start = require('./src/start.js'); module.exports = { build: require('./src/build.js'), monitor: start.bind(null, 'monitor'), run: start.bind(null, 'run'), serve: require('./src/serve.js'), start: start.bind(null, 'start'), scaffold: require('./src/scaffold.js') };