diff --git a/History.md b/History.md index 6d9fe4fc20..f3282dfceb 100644 --- a/History.md +++ b/History.md @@ -17,9 +17,9 @@ [PR #8835](https://github.com/meteor/meteor/pull/8835) * Windows now supports a 64-bit architecture using native 64-bit binaries. - In addition to hopefully being faster, this should allow Windows users to take - better advantage of the new V8 inspector API, which appears to only support - 64-bit platforms when debugging asynchronous operations. + In addition to being faster, this should allow Windows users to take better + advantage of the new V8 inspector API, which only supports 64-bit platforms + when debugging asynchronous operations. [PR #9218](https://github.com/meteor/meteor/pull/9218) * The `meteor debug` command has been superseded by the more flexible @@ -39,7 +39,7 @@ [Feature Request #194](https://github.com/meteor/meteor-feature-requests/issues/194) -* To support developers running on a 32-bit OS, Meteor now supports both 32 +* To support developers running on a 32-bit OS, Meteor now supports both 32- and 64-bit versions of Mongo. Mongo 3.2 is the last 32-bit version available from Mongo. Meteor running on a 32-bit OS will use a 32-bit version of Mongo 3.2 and 64-bit platforms will receive newer Mongo versions in future releases. diff --git a/tools/utils/utils.js b/tools/utils/utils.js index a49d0c6b7b..07cb65c6e3 100644 --- a/tools/utils/utils.js +++ b/tools/utils/utils.js @@ -705,7 +705,7 @@ exports.sourceMapLength = function (sm) { // of the PROCESSOR_ARCHITEW6432 environment variable to determine if the // Windows architecture is 64-bit, then convert to a "uname -m" matching // architecture label (e.g. i386, x86_64). -exports.architecture = () => { +export function architecture() { const supportedArchitectures = { Darwin: { x64: 'x86_64',