Skip to content

Commit

Permalink
coffeescript package dependencies should match those in ecmascript; b…
Browse files Browse the repository at this point in the history
…ump dependency versions
  • Loading branch information
GeoffreyBooth committed Feb 13, 2018
1 parent 89b0e59 commit e768d05
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 @@ -22,8 +22,8 @@ Npm.depends({
});

Package.onUse(function (api) {
api.use('babel-compiler@6.19.4||7.0.0');
api.use('ecmascript@0.8.3');
api.use('babel-compiler@6.19.4||7.0.3');
api.use('ecmascript@0.10.3');

api.mainModule('coffeescript-compiler.js', 'server');

Expand Down
7 changes: 4 additions & 3 deletions packages/non-core/coffeescript/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +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-server@0.4.1', 'server');
api.imply('babel-runtime@1.0.1');
api.imply('promise@0.9.0');
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');
});

Package.onTest(function (api) {
Expand Down

0 comments on commit e768d05

Please sign in to comment.