Bump CoffeeScript to 2.0.3 (#9420)

This commit is contained in:
Geoffrey Booth
2017-11-27 07:04:13 -08:00
committed by Ben Newman
parent 64d1a59f74
commit 4b9e50dfa6
3 changed files with 5 additions and 5 deletions

View File

@@ -13,11 +13,11 @@ 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.0.2_1'
version: '2.0.3_1'
});
Npm.depends({
'coffeescript': '2.0.2',
'coffeescript': '2.0.3',
'source-map': '0.5.7'
});

View File

@@ -4,7 +4,7 @@ Package.describe({
});
Package.onUse(function (api) {
api.use('coffeescript@2.0.2_1', ['client', 'server']);
api.use('coffeescript@2.0.3_1', ['client', 'server']);
api.export('COFFEESCRIPT_EXPORTED');
api.export('COFFEESCRIPT_EXPORTED_ONE_MORE');
api.export('COFFEESCRIPT_EXPORTED_WITH_BACKTICKS');

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.0.2_1'
version: '2.0.3_1'
});
Package.registerBuildPlugin({
name: 'compile-coffeescript',
use: ['caching-compiler@1.1.9', 'ecmascript@0.8.3', 'coffeescript-compiler@=2.0.2_1'],
use: ['caching-compiler@1.1.9', 'ecmascript@0.8.3', 'coffeescript-compiler@=2.0.3_1'],
sources: ['compile-coffeescript.js']
});