Files
meteor/tools/tool-env/install-runtime.js
Ben Newman c9ba0f3a22 Install latest Reify runtime in programs/server/main.js.
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.
2019-04-26 18:55:08 -04:00

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');