mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
3c69570b75
This babel plugin is intended to supress the deprecation warnings from building plugins, however, discourse-plugins does not actually consume this plugin at all. Currently this happens to work due to how the babel worker processes are shared and the timing/ordering of the build, but it will stop working with the embroider build. This commit extracts the plugin the a shared package so that it can be properly consumed by discourse-plugins as well as core.
60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
const SILENCED_WARN_PREFIXES = [
|
|
"Setting the `jquery-integration` optional feature flag",
|
|
"DEPRECATION: Invoking the `<LinkTo>` component with positional arguments is deprecated",
|
|
];
|
|
|
|
class DeprecationSilencer {
|
|
constructor() {
|
|
this.silenced = new WeakMap();
|
|
}
|
|
|
|
silence(object, method) {
|
|
if (this.alreadySilenced(object, method)) {
|
|
return;
|
|
}
|
|
|
|
let original = object[method];
|
|
|
|
object[method] = (message, ...args) => {
|
|
if (!this.shouldSilence(message)) {
|
|
return original.call(object, message, ...args);
|
|
}
|
|
};
|
|
}
|
|
|
|
alreadySilenced(object, method) {
|
|
let set = this.silenced.get(object);
|
|
|
|
if (!set) {
|
|
set = new Set();
|
|
this.silenced.set(object, set);
|
|
}
|
|
|
|
if (set.has(method)) {
|
|
return true;
|
|
} else {
|
|
set.add(method);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
shouldSilence(message) {
|
|
return SILENCED_WARN_PREFIXES.some((prefix) => message.startsWith(prefix));
|
|
}
|
|
}
|
|
|
|
const DEPRECATION_SILENCER = new DeprecationSilencer();
|
|
|
|
/**
|
|
* Export a dummy babel plugin which applies the console.warn silences in worker
|
|
* processes. Does not actually affect babel output.
|
|
*/
|
|
module.exports = function () {
|
|
DEPRECATION_SILENCER.silence(console, "warn");
|
|
return {};
|
|
};
|
|
|
|
module.exports.silence = function silence(...args) {
|
|
DEPRECATION_SILENCER.silence(...args);
|
|
};
|