waigo
Version:
Node.js ES6 framework for reactive, data-driven apps and APIs (Koa, RethinkDB)
13 lines (11 loc) • 347 B
text/coffeescript
path = require 'path'
copyFiles = require './utils/copy-files'
module.exports = (paths, options = {}) ->
handler: ->
copyFiles
src: [
path.join(paths.frontend.src, 'img', '*.*')
]
watchGlob: path.join(paths.frontend.src, 'img', '*.*')
outputDir: path.join(paths.frontend.build, 'img')
options: options