mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
makeInstallerOptions = {};
|
|
|
|
if (typeof Profile === "function" &&
|
|
process.env.METEOR_PROFILE) {
|
|
makeInstallerOptions.wrapRequire = function (require) {
|
|
return Profile(function (id) {
|
|
return "require(" + JSON.stringify(id) + ")";
|
|
}, require);
|
|
};
|
|
}
|