« All deprecation guides

Deprecation Guide for blacklist and whitelist build options

until: 5.0.0
id: ember-cli.blacklist-whitelist-build-options

Using the blacklist and whitelist build options has been deprecated. Please use exclude and include respectively instead.

ember-cli-build.js
module.exports = function (defaults) {
  const app = new EmberApp(defaults, {
    addons: {
      blacklist: ['addon-name'],
      exclude: ['addon-name'],
    },
  };
};