0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Replaced white/black list terminology

refs 92986b77e3i

- found one more place where this has been missed
This commit is contained in:
Hannah Wolfe 2022-05-09 12:23:20 +01:00
parent 0148f1deaa
commit 51c1db079b

View file

@ -104,14 +104,14 @@ const simplemdeAssets = function () {
return config;
};
let blacklist = [];
let denylist = [];
if (process.env.CI) {
blacklist.push('ember-cli-eslint');
denylist.push('ember-cli-eslint');
}
module.exports = function (defaults) {
let app = new EmberApp(defaults, {
addons: {blacklist},
addons: {denylist},
'ember-cli-babel': {
optional: ['es6.spec.symbols'],
includePolyfill: false