diff --git a/History.md b/History.md index a5b4b199f4..ddad1870f7 100644 --- a/History.md +++ b/History.md @@ -11,7 +11,9 @@ information about how dynamic `import(...)` works in Meteor, and how to use it in your applications. -* The `meteor-babel` npm package has been upgraded to version 0.21.1. +* The `meteor-babel` npm package has been upgraded to version 0.21.2, + enabling the latest Reify compiler and the transform-class-properties + plugin, among other improvements. * The `reify` npm package has been upgraded to version 0.11.0, fixing [issue #8595](https://github.com/meteor/meteor/issues/8595) and diff --git a/packages/babel-compiler/.npm/package/npm-shrinkwrap.json b/packages/babel-compiler/.npm/package/npm-shrinkwrap.json index c6866fd16c..a88dedc6c0 100644 --- a/packages/babel-compiler/.npm/package/npm-shrinkwrap.json +++ b/packages/babel-compiler/.npm/package/npm-shrinkwrap.json @@ -199,6 +199,11 @@ "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz", "from": "babel-plugin-syntax-async-generators@>=6.13.0 <7.0.0" }, + "babel-plugin-syntax-class-properties": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", + "from": "babel-plugin-syntax-class-properties@>=6.8.0 <7.0.0" + }, "babel-plugin-syntax-dynamic-import": { "version": "6.18.0", "resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz", @@ -224,6 +229,11 @@ "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", "from": "babel-plugin-syntax-trailing-function-commas@>=6.22.0 <7.0.0" }, + "babel-plugin-transform-class-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", + "from": "babel-plugin-transform-class-properties@>=6.24.1 <7.0.0" + }, "babel-plugin-transform-es2015-arrow-functions": { "version": "6.22.0", "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", @@ -580,9 +590,9 @@ "from": "loose-envify@>=1.0.0 <2.0.0" }, "meteor-babel": { - "version": "0.21.1", - "resolved": "https://registry.npmjs.org/meteor-babel/-/meteor-babel-0.21.1.tgz", - "from": "meteor-babel@0.21.1" + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/meteor-babel/-/meteor-babel-0.21.2.tgz", + "from": "meteor-babel@0.21.2" }, "meteor-babel-helpers": { "version": "0.0.3", diff --git a/packages/babel-compiler/package.js b/packages/babel-compiler/package.js index e6d14c7981..e0132914eb 100644 --- a/packages/babel-compiler/package.js +++ b/packages/babel-compiler/package.js @@ -10,7 +10,7 @@ Package.describe({ }); Npm.depends({ - 'meteor-babel': '0.21.1' + 'meteor-babel': '0.21.2' }); Package.onUse(function (api) {