fs = require 'fs' module.exports = class Package @build: (path) -> TextMatePackage = require 'text-mate-package' AtomPackage = require 'atom-package' if TextMatePackage.testName(path) new TextMatePackage(path) else new AtomPackage(path) name: null path: null constructor: (@path) -> @name = fs.base(@path)