Upgrade meteor-babel to version 0.21.2 to enable class properties.

This commit is contained in:
Ben Newman
2017-05-09 21:51:54 -04:00
parent 7a54259c94
commit 656fbeba9b
3 changed files with 17 additions and 5 deletions

View File

@@ -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

View File

@@ -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",

View File

@@ -10,7 +10,7 @@ Package.describe({
});
Npm.depends({
'meteor-babel': '0.21.1'
'meteor-babel': '0.21.2'
});
Package.onUse(function (api) {