discourse/app/assets/javascripts/handlebars-shim.js
Robin Ward d615de9139
DEV: Support for import Handlebars from 'handlebars'; (#9600)
* Remove Handlebars.SafeString usage

* DEV: Support for `import Handlebars from 'handlebars'`;

* FIX: Sprockets was broken when `node_modules` was present

By default the old version of sprockets looks for application.js
anywhere, including in a node_modules folder if this exists
(which it will when we move to Ember CLI.)
2020-04-30 16:41:02 -04:00

10 lines
307 B
JavaScript

// allow us to import this as a module
if (typeof define !== "undefined") {
define("handlebars", ["exports"], function(__exports__) {
// It might not be defined server side, which is OK for pretty-text
if (typeof Handlebars !== "undefined") {
__exports__.default = Handlebars;
}
});
}