UNPKG

mondorepo

Version:

Management for collections of packages across teams

15 lines (12 loc) 246 B
class PackageManager { constructor (opts) { Object.assign(this, opts); } install (path) { throw new Error("Not yet implemented"); } available() { return true; } } module.exports = PackageManager;