From 8ab9d45647f7c7b09e066e8fe9fd2cadbbe679ad Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Wed, 29 Jul 2020 12:34:13 +0200 Subject: [PATCH] Update readme to remove terms blacklist/whitelist --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3420fc4e..fb54120e 100755 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ a shared module, reducing app size overall. This option is available _only_ to the root application, because it is a global configuration value due to the fact that there can only be one version of helpers included. -Note that there is currently no way to whitelist or blacklist helpers, so all +Note that there is currently no way to allow or ignore helpers, so all helpers will be included, even ones which are not used. If your app is small, this could add to overall build size, so be sure to check. @@ -233,7 +233,7 @@ let app = new EmberApp(defaults, { #### Modules Older versions of Ember CLI (`< 2.12`) use its own ES6 module transpiler. -Because of that, this plugin disables Babel module compilation by blacklisting +Because of that, this plugin disables Babel module compilation by ignoring that transform when running under affected ember-cli versions. If you find that you want to use the Babel module transform instead of the Ember CLI one, you'll have to explicitly set `compileModules` to `true` in your configuration. If