ember-repl 8.0.2 → 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/declarations/compile/Compiled.d.ts +17 -0
- package/declarations/compile/Compiled.d.ts.map +1 -1
- package/declarations/compile/compile.d.ts +9 -0
- package/declarations/compile/compile.d.ts.map +1 -1
- package/declarations/compile/state.d.ts.map +1 -1
- package/declarations/index.d.ts +1 -0
- package/declarations/index.d.ts.map +1 -1
- package/declarations/services/compiler.d.ts +2 -1
- package/declarations/services/compiler.d.ts.map +1 -1
- package/declarations/services/known-modules.d.ts.map +1 -1
- package/dist/compile/Compiled.js +25 -4
- package/dist/compile/Compiled.js.map +1 -1
- package/dist/compile/compile.js +1 -1
- package/dist/compile/compile.js.map +1 -1
- package/dist/compile/state.js +2 -1
- package/dist/compile/state.js.map +1 -1
- package/dist/{index-F3Sr0JFE.js → index-C0sat7kP.js} +61 -8
- package/dist/index-C0sat7kP.js.map +1 -0
- package/dist/{plugin-DATxmrFU.js → plugin-ZDtYFKJg.js} +2 -8
- package/dist/{plugin-DATxmrFU.js.map → plugin-ZDtYFKJg.js.map} +1 -1
- package/dist/services/compiler.js +3 -2
- package/dist/services/compiler.js.map +1 -1
- package/dist/services/known-modules.js +4 -2
- package/dist/services/known-modules.js.map +1 -1
- package/package.json +23 -22
- package/src/compile/Compiled.ts +56 -7
- package/src/compile/compile.ts +13 -1
- package/src/compile/state.ts +3 -1
- package/src/index.ts +1 -0
- package/src/services/compiler.ts +6 -2
- package/src/services/known-modules.ts +2 -0
- package/dist/index-F3Sr0JFE.js.map +0 -1
|
@@ -8852,13 +8852,7 @@ function buildPrecompileOptions(babel, target, state, normalizedOpts, template,
|
|
|
8852
8852
|
// we've extended meta to add jsutils, but the types in @glimmer/syntax
|
|
8853
8853
|
// don't account for extension
|
|
8854
8854
|
meta: meta,
|
|
8855
|
-
//
|
|
8856
|
-
// backward-compatible module names that don't match the real name of the
|
|
8857
|
-
// on-disk file. What's our plan for migrating people away from that?
|
|
8858
|
-
moduleName: state.filename,
|
|
8859
|
-
// This is here so it's *always* the real filename. Historically, there is
|
|
8860
|
-
// also `moduleName` but that did not match the real on-disk filename, it
|
|
8861
|
-
// was the notional runtime module name from classic ember builds.
|
|
8855
|
+
// This is here so it's *always* the real filename.
|
|
8862
8856
|
filename: state.filename,
|
|
8863
8857
|
plugins: {
|
|
8864
8858
|
// the cast is needed here only because our meta is extended. That is,
|
|
@@ -9107,4 +9101,4 @@ function name(node) {
|
|
|
9107
9101
|
var plugin = makePlugin(async options => options);
|
|
9108
9102
|
|
|
9109
9103
|
export { plugin as default, makePlugin };
|
|
9110
|
-
//# sourceMappingURL=plugin-
|
|
9104
|
+
//# sourceMappingURL=plugin-ZDtYFKJg.js.map
|