diff --git a/packages/non-core/coffeescript-compiler/package.js b/packages/non-core/coffeescript-compiler/package.js index bd8d58f340..3230d773c1 100644 --- a/packages/non-core/coffeescript-compiler/package.js +++ b/packages/non-core/coffeescript-compiler/package.js @@ -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'); diff --git a/packages/non-core/coffeescript/package.js b/packages/non-core/coffeescript/package.js index f34498d530..52a4d00e0e 100644 --- a/packages/non-core/coffeescript/package.js +++ b/packages/non-core/coffeescript/package.js @@ -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) {