mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
coffeescript package dependencies should match those in ecmascript; bump dependency versions
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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');
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user