Sha256: 3c767238e885e4c27acfa7b5a31d5498b3c99ee857f97d061387a299eda2a6b5
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
import { context, ENV } from '@ember/-internals/environment'; import { FEATURES } from '@ember/canary-features'; import VERSION from 'ember/version'; export const _Ember = (typeof context.imports.Ember === 'object' && context.imports.Ember) || {}; // private API used by ember-cli-htmlbars to setup ENV and FEATURES if (!_Ember.ENV) { _Ember.ENV = ENV; } if (!_Ember.FEATURES) { _Ember.FEATURES = FEATURES; } if (!_Ember.VERSION) { _Ember.VERSION = VERSION; } // used for adding Ember.Handlebars.compile for backwards compat import setupGlobal from './lib/compat'; setupGlobal(_Ember); export { default as precompile } from './lib/system/precompile'; export { default as compile } from './lib/system/compile'; export { default as compileOptions, registerPlugin, unregisterPlugin, } from './lib/system/compile-options'; export { default as defaultPlugins } from './lib/plugins/index'; // used to bootstrap templates import './lib/system/bootstrap'; // add domTemplates initializer (only does something if `ember-template-compiler` // is loaded already) import './lib/system/initializer';
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
discourse-ember-source-3.6.0.0 | dist/es/ember-template-compiler/index.js |