coffeescript package dependencies should match those in ecmascript; bump dependency versions

This commit is contained in:
Geoffrey Booth
2018-02-12 22:42:17 -08:00
parent 89b0e5919e
commit e768d0525a
3 changed files with 9 additions and 8 deletions

View File

@@ -2,9 +2,9 @@
"lockfileVersion": 1,
"dependencies": {
"coffeescript": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.3.tgz",
"integrity": "sha512-iIfUN+71IyI2FQABXh1luzZeQgqwUPeWh6lDovJatQQs+30bvyGnBY0r4BnD0hoMAasNuZVHlL1U09Oy1ZfSeg=="
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/coffeescript/-/coffeescript-2.2.1.tgz",
"integrity": "sha512-UFSs0WDed7ZiQGtWZ401PZnlgnP5jtlr4Gk+aPMTIkFkKY6Kz2gRp+WIu0QzllR30nV2XheicAhKwDJQcor6lg=="
},
"source-map": {
"version": "0.5.7",

View File

@@ -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');

View File

@@ -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) {