UNPKG

ember-cli

Version:

Command line tool for developing ambitious ember.js apps

19 lines (15 loc) 336 B
'use strict'; /** * A simple class to store metadata info about an addon. This replaces a plain JS object * that used to be created with the same fields. * * @module ember-cli */ class AddonInfo { constructor(name, path, pkg) { this.name = name; this.path = path; this.pkg = pkg; } } module.exports = AddonInfo;