ember-cli-addon-docs icon indicating copy to clipboard operation
ember-cli-addon-docs copied to clipboard

Doesn't work with disabled addons

Open ryanto opened this issue 5 years ago • 0 comments

I've got an addon that's made for testing & development, so I'm using ember-cli's isEnabled hook to disable the addon in production environments.

isEnabled() {
  return this.app.env !== "production";
}

I just noticed that this returns false when ember deploy production is run. The deploy completes, but what is shipped to gh-pages is not a complete addon docs app. The docs subfolder is missing and the app errors when it tries to request the json file with all modules.

For now I've set isEnabled to always return true, but I'm wondering if I can somehow have this hook detect if it's running as part of an addon docs deploy?

ryanto avatar Apr 27 '19 01:04 ryanto