Merge branch 'release-2.11' of https://github.com/meteor/meteor into release-2.11

This commit is contained in:
Gabriel Grubba
2023-02-10 18:01:41 -03:00
2 changed files with 1 additions and 11 deletions

View File

@@ -2,16 +2,6 @@ import { BabelCompiler } from 'meteor/babel-compiler';
import CoffeeScript from 'coffeescript';
import { SourceMapConsumer, SourceMapGenerator } from 'source-map';
// The CoffeeScript compiler overrides Error.prepareStackTrace, mostly for the
// use of coffee.run which we don't use. This conflicts with the tool's use of
// Error.prepareStackTrace to properly show error messages in linked code.
// Restore the tool's one after CoffeeScript clobbers it at import time.
if (Error.METEOR_prepareStackTrace) {
Error.prepareStackTrace = Error.METEOR_prepareStackTrace;
}
// The CompileResult for this CachingCompiler is a {source, sourceMap} object.
export class CoffeeScriptCompiler {
constructor() {

View File

@@ -6,7 +6,7 @@ Package.describe({
// so bumping the version of this package will be how they get newer versions
// of `coffeescript-compiler`. If you change this, make sure to also update
// ../coffeescript-compiler/package.js to match.
version: '2.4.1'
version: '2.7.0'
});
Package.registerBuildPlugin({