Skip to content

Commit

Permalink
Bump CoffeeScript version to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyBooth committed Feb 13, 2018
1 parent 63ed2e2 commit 89b0e59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/non-core/coffeescript-compiler/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.3_4'
version: '2.2.1_1'
});

Npm.depends({
'coffeescript': '2.0.3',
'coffeescript': '2.2.1',
'source-map': '0.5.7'
});

Expand Down
2 changes: 1 addition & 1 deletion packages/non-core/coffeescript-test-helper/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Package.describe({
});

Package.onUse(function (api) {
api.use('coffeescript@2.0.3_4', ['client', 'server']);
api.use('coffeescript@2.2.1_1', ['client', 'server']);
api.export('COFFEESCRIPT_EXPORTED');
api.export('COFFEESCRIPT_EXPORTED_ONE_MORE');
api.export('COFFEESCRIPT_EXPORTED_WITH_BACKTICKS');
Expand Down
4 changes: 2 additions & 2 deletions packages/non-core/coffeescript/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.3_4'
version: '2.2.1_1'
});

Package.registerBuildPlugin({
name: 'compile-coffeescript',
use: ['caching-compiler@1.1.9', 'ecmascript@0.8.3', 'coffeescript-compiler@2.0.3_4'],
use: ['caching-compiler@1.1.9', 'ecmascript@0.8.3', 'coffeescript-compiler@2.2.1_1'],
sources: ['compile-coffeescript.js']
});

Expand Down

0 comments on commit 89b0e59

Please sign in to comment.