Merge branch 'devel' into update-test-in-browser-dependencies

This commit is contained in:
Gabriel Grubba
2023-01-04 12:46:19 -03:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -926,7 +926,7 @@ from npm to your `node_modules` directory and save its usage in your
Using the `meteor npm ...` commands in place of traditional `npm ...` commands
is particularly important when using Node.js modules that have binary
dependencies that make native C calls (like [`bcrypt`](https://www.npmjs.com/package/bcrypt))
because doing so ensures that they are built using the same libaries.
because doing so ensures that they are built using the same libraries.
Additionally, this access to the npm that comes with Meteor avoids the need to
download and install npm separately.

View File

@@ -1,7 +1,7 @@
// This file contains an old definition of CompileStep, an object that is passed
// to the package-provided file handler.
// Since then, the newer API called "Batch Plugins" have replaced it but we keep
// the functionality for the backwards-compitability.
// the functionality for the backwards-compatibility.
// @deprecated
// XXX COMPAT WITH 1.1.0.2

View File

@@ -75,7 +75,7 @@ Object.assign(Job.prototype, {
}
line += ": ";
} else {
// not sure how to display messages without a filenanme.. try this?
// not sure how to display messages without a file name.. try this?
line += "error: ";
}
// XXX line wrapping would be nice..