Bump the versions of the Meteor core packages that the coffeescript package depends on to their latest versions as of Meteor 1.7.0.4; this enables modern browsers JavaScript output

This commit is contained in:
Geoffrey Booth
2018-08-15 23:00:19 -07:00
parent b2919e5f45
commit 9ba3308895
2 changed files with 9 additions and 9 deletions

View File

@@ -13,7 +13,7 @@ Package.describe({
summary: 'Compiler for CoffeeScript code, supporting the coffeescript package',
// This version of NPM `coffeescript` module, with _1, _2 etc.
// If you change this, make sure to also update ../coffeescript/package.js to match.
version: '2.2.1_1'
version: '2.2.1_2'
});
Npm.depends({
@@ -22,8 +22,8 @@ Npm.depends({
});
Package.onUse(function (api) {
api.use('babel-compiler@6.19.4||7.0.3');
api.use('ecmascript@0.10.3');
api.use('babel-compiler@6.24.7||7.1.1');
api.use('ecmascript@0.11.1');
api.mainModule('coffeescript-compiler.js', 'server');

View File

@@ -6,12 +6,12 @@ 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.2.1_1'
version: '2.2.1_2'
});
Package.registerBuildPlugin({
name: 'compile-coffeescript',
use: ['caching-compiler@1.1.9', 'ecmascript@0.8.3', 'coffeescript-compiler@2.2.1_1'],
use: ['caching-compiler@1.1.12', 'ecmascript@0.11.1', 'coffeescript-compiler@2.2.1_2'],
sources: ['compile-coffeescript.js']
});
@@ -24,10 +24,10 @@ Package.onUse(function (api) {
// same runtime environment that the 'ecmascript' package provides.
// The following api.imply calls should match those in ../../ecmascript/package.js,
// except that coffeescript does not api.imply('modules').
api.imply('ecmascript-runtime@0.5.0');
api.imply('babel-runtime@1.2.2');
api.imply('promise@0.10.1');
api.imply('dynamic-import@0.3.0');
api.imply('ecmascript-runtime@0.7.0');
api.imply('babel-runtime@1.2.4');
api.imply('promise@0.11.1');
api.imply('dynamic-import@0.4.1');
});
Package.onTest(function (api) {