UNPKG

hubot-maps

Version:

A Hubot script for searching maps and directions

13 lines (11 loc) 393 B
fs = require 'fs' path = require 'path' module.exports = (robot, scripts) -> scriptsPath = path.resolve(__dirname, 'src') fs.exists scriptsPath, (exists) -> if exists for script in fs.readdirSync(scriptsPath) if scripts? and '*' not in scripts robot.loadFile(scriptsPath, script) if script in scripts else robot.loadFile(scriptsPath, script)