Remove version constraints from ecmascript/package.js.

These constraints are only helpful when publishing the package apart
from a Meteor release, and are hard to maintain otherwise.
This commit is contained in:
Ben Newman
2016-11-08 17:38:51 -05:00
parent 51bb575e00
commit 2d8f187cc9

View File

@@ -13,14 +13,14 @@ Package.registerBuildPlugin({
Package.onUse(function (api) {
api.use('isobuild:compiler-plugin@1.0.0');
api.use('babel-compiler@6.13.0');
api.use('babel-compiler');
// The following api.imply calls should match those in
// ../coffeescript/package.js.
api.imply('modules@0.7.7');
api.imply('ecmascript-runtime@0.3.15');
api.imply('babel-runtime@1.0.0');
api.imply('promise@0.8.8');
api.imply('modules');
api.imply('ecmascript-runtime');
api.imply('babel-runtime');
api.imply('promise');
api.addFiles("ecmascript.js", "server");
api.export("ECMAScript", "server");