Deprecate warnings like in materialze-badge.js will break app build starting with ember 3.10 or specifically @ember/application/deprecations v1.0.0 as it is not following the new syntax for options parameter.
see:
deprecate = function deprecate(message, test, options) {
assert(missingOptionsDeprecation, Boolean(options && (options.id || options.until)));
assert(missingOptionsIdDeprecation, Boolean(options!.id));
assert(missingOptionsUntilDeprecation, Boolean(options!.until));
invoke('deprecate', message, test, options);
};
From my opinion we could just remove these files anyway.
Deprecate warnings like in materialze-badge.js will break app build starting with ember 3.10 or specifically @ember/application/deprecations v1.0.0 as it is not following the new syntax for options parameter.
see:
deprecate = function deprecate(message, test, options) {
assert(missingOptionsDeprecation, Boolean(options && (options.id || options.until)));
assert(missingOptionsIdDeprecation, Boolean(options!.id));
assert(missingOptionsUntilDeprecation, Boolean(options!.until));
};
From my opinion we could just remove these files anyway.