diff --git a/packages/ecmascript/package.js b/packages/ecmascript/package.js index e2f6580d75..06b291878c 100644 --- a/packages/ecmascript/package.js +++ b/packages/ecmascript/package.js @@ -1,20 +1,20 @@ Package.describe({ name: 'ecmascript', - version: '0.1.1', + version: '0.1.2', summary: 'Compiler plugin that supports ES2015+ in all .js files', documentation: 'README.md' }); Package.registerBuildPlugin({ name: 'compile-ecmascript', - use: ['babel-compiler@5.7.3'], + use: ['babel-compiler@5.8.3'], sources: ['plugin.js'] }); Package.onUse(function (api) { api.use('isobuild:compiler-plugin@1.0.0'); api.imply('babel-runtime@0.1.2'); - api.imply('promise@0.4.0'); + api.imply('promise@0.4.1'); }); Package.onTest(function (api) {