mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user