mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Also updated meteor-babel in the dev bundle to depend on reify@0.18.1, to be consistent with the version used by server code.
19 lines
736 B
JavaScript
19 lines
736 B
JavaScript
"use strict";
|
|
|
|
// This module gets imported again in install-promise.js, but we might as
|
|
// well import it here as well, in case we ever stop using meteor-promise.
|
|
require("./wrap-fibers.js");
|
|
|
|
// Install ES2015-complaint polyfills for Object, Array, String, Function,
|
|
// Symbol, Map, Set, and Promise, patching the native implementations when
|
|
// they are available.
|
|
require("./install-promise.js");
|
|
|
|
// Enable the Reify module runtime: Module.prototype.{link,export,...}.
|
|
// The same runtime.js code is used by server code (see boot.js).
|
|
require("../static-assets/server/runtime.js");
|
|
|
|
// Installs source map support with a hook to add functions to look for
|
|
// source maps in custom places.
|
|
require('./source-map-retriever-stack.js');
|