UNPKG

221 Btext/coffeescriptView Raw
1fs = require 'fs'
2path = require 'path'
3
4module.exports = (robot, scripts) ->
5 scriptsPath = path.resolve(__dirname, 'src')
6 fs.exists scriptsPath, (exists) ->
7 robot.loadFile(scriptsPath, 'index.coffee') if exists
8