-
Notifications
You must be signed in to change notification settings - Fork 111
Open
Description
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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels