-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Expand file tree
/
Copy pathember-template-compiler.js
More file actions
206 lines (152 loc) · 8.94 KB
/
ember-template-compiler.js
File metadata and controls
206 lines (152 loc) · 8.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/* eslint-disable */
// This file was derived from the output of the classic broccoli-based build of
// ember-template-compiler.js. It's intended to convey exactly how the authored ES modules
// get mapped into backward-compatible AMD defines.
import d from 'amd-compat-entrypoint-definition';
import * as emberinternalsBrowserEnvironmentIndex from '@ember/-internals/browser-environment/index';
d('@ember/-internals/browser-environment/index', emberinternalsBrowserEnvironmentIndex);
import * as emberinternalsEnvironmentIndex from '@ember/-internals/environment/index';
d('@ember/-internals/environment/index', emberinternalsEnvironmentIndex);
import * as emberinternalsUtilsIndex from '@ember/-internals/utils/index';
d('@ember/-internals/utils/index', emberinternalsUtilsIndex);
import * as emberCanaryFeaturesIndex from '@ember/canary-features/index';
d('@ember/canary-features/index', emberCanaryFeaturesIndex);
/*
The classic build included these modules but not their dependencies, so they
never worked. Keeping this comment to document why the list of modules differs in
this way.
import * as emberDebugContainerDebugAdapter from '@ember/debug/container-debug-adapter';
d('@ember/debug/container-debug-adapter', emberDebugContainerDebugAdapter);
import * as emberDebugDataAdapter from '@ember/debug/data-adapter';
d('@ember/debug/data-adapter', emberDebugDataAdapter);
*/
import * as emberDebugIndex from '@ember/debug/index';
d('@ember/debug/index', emberDebugIndex);
import * as emberDebugLibCaptureRenderTree from '@ember/debug/lib/capture-render-tree';
d('@ember/debug/lib/capture-render-tree', emberDebugLibCaptureRenderTree);
import * as emberDebugLibDeprecate from '@ember/debug/lib/deprecate';
d('@ember/debug/lib/deprecate', emberDebugLibDeprecate);
import * as emberDebugLibHandlers from '@ember/debug/lib/handlers';
d('@ember/debug/lib/handlers', emberDebugLibHandlers);
import * as emberDebugLibInspect from '@ember/debug/lib/inspect';
d('@ember/debug/lib/inspect', emberDebugLibInspect);
import * as emberDebugLibTesting from '@ember/debug/lib/testing';
d('@ember/debug/lib/testing', emberDebugLibTesting);
import * as emberDebugLibWarn from '@ember/debug/lib/warn';
d('@ember/debug/lib/warn', emberDebugLibWarn);
import * as emberDeprecatedFeaturesIndex from '@ember/deprecated-features/index';
d('@ember/deprecated-features/index', emberDeprecatedFeaturesIndex);
import * as glimmerCompiler from '@glimmer/compiler';
d('@glimmer/compiler', glimmerCompiler);
import * as glimmerEnv from '@glimmer/env';
d('@glimmer/env', glimmerEnv);
import * as glimmerSyntax from '@glimmer/syntax';
d('@glimmer/syntax', glimmerSyntax);
import * as glimmerUtil from '@glimmer/util';
d('@glimmer/util', glimmerUtil);
import * as glimmerVm from '@glimmer/vm';
d('@glimmer/vm', glimmerVm);
import * as glimmerWireFormat from '@glimmer/wire-format';
d('@glimmer/wire-format', glimmerWireFormat);
import * as handlebarsParserIndex from '@handlebars/parser';
d('@handlebars/parser/index', handlebarsParserIndex);
import * as emberTemplateCompilerIndex from 'ember-template-compiler/index';
d('ember-template-compiler/index', emberTemplateCompilerIndex);
import * as emberTemplateCompilerLibPluginsAssertAgainstAttrs from 'ember-template-compiler/lib/plugins/assert-against-attrs';
d(
'ember-template-compiler/lib/plugins/assert-against-attrs',
emberTemplateCompilerLibPluginsAssertAgainstAttrs
);
import * as emberTemplateCompilerLibPluginsAssertAgainstNamedOutlets from 'ember-template-compiler/lib/plugins/assert-against-named-outlets';
d(
'ember-template-compiler/lib/plugins/assert-against-named-outlets',
emberTemplateCompilerLibPluginsAssertAgainstNamedOutlets
);
import * as emberTemplateCompilerLibPluginsAssertInputHelperWithoutBlock from 'ember-template-compiler/lib/plugins/assert-input-helper-without-block';
d(
'ember-template-compiler/lib/plugins/assert-input-helper-without-block',
emberTemplateCompilerLibPluginsAssertInputHelperWithoutBlock
);
import * as emberTemplateCompilerLibPluginsAssertReservedNamedArguments from 'ember-template-compiler/lib/plugins/assert-reserved-named-arguments';
d(
'ember-template-compiler/lib/plugins/assert-reserved-named-arguments',
emberTemplateCompilerLibPluginsAssertReservedNamedArguments
);
import * as emberTemplateCompilerLibPluginsIndex from 'ember-template-compiler/lib/plugins/index';
d('ember-template-compiler/lib/plugins/index', emberTemplateCompilerLibPluginsIndex);
import * as emberTemplateCompilerLibPluginsTransformActionSyntax from 'ember-template-compiler/lib/plugins/transform-action-syntax';
d(
'ember-template-compiler/lib/plugins/transform-action-syntax',
emberTemplateCompilerLibPluginsTransformActionSyntax
);
import * as emberTemplateCompilerLibPluginsTransformEachInIntoEach from 'ember-template-compiler/lib/plugins/transform-each-in-into-each';
d(
'ember-template-compiler/lib/plugins/transform-each-in-into-each',
emberTemplateCompilerLibPluginsTransformEachInIntoEach
);
import * as emberTemplateCompilerLibPluginsTransformEachTrackArray from 'ember-template-compiler/lib/plugins/transform-each-track-array';
d(
'ember-template-compiler/lib/plugins/transform-each-track-array',
emberTemplateCompilerLibPluginsTransformEachTrackArray
);
import * as emberTemplateCompilerLibPluginsTransformInElement from 'ember-template-compiler/lib/plugins/transform-in-element';
d(
'ember-template-compiler/lib/plugins/transform-in-element',
emberTemplateCompilerLibPluginsTransformInElement
);
import * as emberTemplateCompilerLibPluginsTransformQuotedBindingsIntoJustBindings from 'ember-template-compiler/lib/plugins/transform-quoted-bindings-into-just-bindings';
d(
'ember-template-compiler/lib/plugins/transform-quoted-bindings-into-just-bindings',
emberTemplateCompilerLibPluginsTransformQuotedBindingsIntoJustBindings
);
import * as emberTemplateCompilerLibPluginsTransformResolutions from 'ember-template-compiler/lib/plugins/transform-resolutions';
d(
'ember-template-compiler/lib/plugins/transform-resolutions',
emberTemplateCompilerLibPluginsTransformResolutions
);
import * as emberTemplateCompilerLibPluginsTransformWrapMountAndOutlet from 'ember-template-compiler/lib/plugins/transform-wrap-mount-and-outlet';
d(
'ember-template-compiler/lib/plugins/transform-wrap-mount-and-outlet',
emberTemplateCompilerLibPluginsTransformWrapMountAndOutlet
);
import * as emberTemplateCompilerLibPluginsUtils from 'ember-template-compiler/lib/plugins/utils';
d('ember-template-compiler/lib/plugins/utils', emberTemplateCompilerLibPluginsUtils);
import * as emberTemplateCompilerLibPublicApi from 'ember-template-compiler/lib/public-api';
d('ember-template-compiler/lib/public-api', emberTemplateCompilerLibPublicApi);
import * as emberTemplateCompilerLibSystemBootstrap from 'ember-template-compiler/lib/system/bootstrap';
d('ember-template-compiler/lib/system/bootstrap', emberTemplateCompilerLibSystemBootstrap);
import * as emberTemplateCompilerLibSystemCalculateLocationDisplay from 'ember-template-compiler/lib/system/calculate-location-display';
d(
'ember-template-compiler/lib/system/calculate-location-display',
emberTemplateCompilerLibSystemCalculateLocationDisplay
);
import * as emberTemplateCompilerLibSystemCompileOptions from 'ember-template-compiler/lib/system/compile-options';
d(
'ember-template-compiler/lib/system/compile-options',
emberTemplateCompilerLibSystemCompileOptions
);
import * as emberTemplateCompilerLibSystemCompile from 'ember-template-compiler/lib/system/compile';
d('ember-template-compiler/lib/system/compile', emberTemplateCompilerLibSystemCompile);
import * as emberTemplateCompilerLibSystemDasherizeComponentName from 'ember-template-compiler/lib/system/dasherize-component-name';
d(
'ember-template-compiler/lib/system/dasherize-component-name',
emberTemplateCompilerLibSystemDasherizeComponentName
);
import * as emberTemplateCompilerLibSystemInitializer from 'ember-template-compiler/lib/system/initializer';
d('ember-template-compiler/lib/system/initializer', emberTemplateCompilerLibSystemInitializer);
import * as emberTemplateCompilerLibSystemPrecompile from 'ember-template-compiler/lib/system/precompile';
d('ember-template-compiler/lib/system/precompile', emberTemplateCompilerLibSystemPrecompile);
import * as emberTemplateCompilerLibTypes from 'ember-template-compiler/lib/types';
d('ember-template-compiler/lib/types', emberTemplateCompilerLibTypes);
import * as emberTemplateCompilerMinimal from 'ember-template-compiler/minimal';
d('ember-template-compiler/minimal', emberTemplateCompilerMinimal);
import * as emberVersion from 'ember/version';
d('ember/version', emberVersion);
import * as simpleHtmlTokenizer from 'simple-html-tokenizer';
d('simple-html-tokenizer', simpleHtmlTokenizer);
if (typeof module === 'object' && module.exports) {
module.exports = emberTemplateCompilerIndex;
}
console.log(
'\n\n--------\n+ Your app is using the legacy ember-template-compiler.js AMD bundle. This will be removed in ember-source 7.0. See https://deprecations.emberjs.com/id/using-amd-bundles for more details.\n--------'
);