* Consider reexports for bindingKindLookup. * Update test cases according to reexports change * Fix order for assign reexports. * void 0 assignation to module keys only for loose mode. * Create buildReexportsFromMeta helper. * Update umd/amd fixtures. * Refactor reexports build. * Hoist template for reexports. * Use map as a second argument of Array.from. * Remove unnecessary export.
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
define(["exports", "foo"], function (_exports, _foo) {
|
|
"use strict";
|
|
|
|
_exports.__esModule = true;
|
|
_exports.foo = void 0;
|
|
_exports.foo = _foo.foo;
|
|
});
|