mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
24 lines
663 B
JavaScript
24 lines
663 B
JavaScript
require("./extensions.js");
|
|
|
|
require("meteor-promise").makeCompatible(
|
|
Promise,
|
|
// Allow every Promise callback to run in a Fiber drawn from a pool of
|
|
// reusable Fibers.
|
|
require("fibers")
|
|
);
|
|
|
|
// Reference: https://caniuse.com/#feat=promises
|
|
require("meteor/modern-browsers").setMinimumBrowserVersions({
|
|
chrome: 32,
|
|
edge: 12,
|
|
// Since there is no IE12, this effectively excludes Internet Explorer
|
|
// (pre-Edge) from the modern classification. #9818 #9839
|
|
ie: 12,
|
|
firefox: 29,
|
|
mobileSafari: 8,
|
|
opera: 20,
|
|
safari: [7, 1],
|
|
// https://github.com/Kilian/electron-to-chromium/blob/master/full-versions.js
|
|
electron: [0, 20],
|
|
}, module.id);
|