mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
a3e2152265
Just a bit of 🧹
23 lines
610 B
JavaScript
23 lines
610 B
JavaScript
// Allow us to import Ember
|
|
define("ember", ["exports"], function(__exports__) {
|
|
// eslint-disable-next-line no-console
|
|
console.warn(
|
|
[
|
|
"Deprecation notice:",
|
|
"Use specific `@ember/*` imports instead of `ember`",
|
|
"(deprecated since Discourse 2.4.0)",
|
|
"(removal in Discourse 2.5.0)"
|
|
].join(" ")
|
|
);
|
|
|
|
__exports__.default = Ember;
|
|
});
|
|
|
|
define("message-bus-client", ["exports"], function(__exports__) {
|
|
__exports__.default = window.MessageBus;
|
|
});
|
|
|
|
define("ember-buffered-proxy/proxy", ["exports"], function(__exports__) {
|
|
__exports__.default = window.BufferedProxy;
|
|
});
|