Quantcast
Channel: Ember.JS - Latest topics
Viewing all articles
Browse latest Browse all 4838

How Can I Add a Custom Addon to Consuming App

$
0
0

@andrew1 wrote:

I'm writing an addon that abstracts out the UI elements for my team. The purpose is to have multiple Ember applications that all use the same style for buttons, panels, growlers, etc...

The problem I'm running into is that I have a dependency on ember-cli-notifications for growlers, but I want to fork that project to add functionality that I need (hopefully, I can get the changes merged into the main project but I need a bridge for right now).

Currently, I install the dependency in the addon's blueprint:

afterInstall: function (options) {
  return this.addAdddonsToProject({
    packages: [
       'ember-cli-notifications'
    ]
  });
}

How can I install ember-cli-notifications from a github repo instead?

Posts: 3

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 4838

Trending Articles