From b347d78d88cc408b7396c9648fd333dca29f21f6 Mon Sep 17 00:00:00 2001 From: Geoffrey Booth Date: Fri, 5 Aug 2016 12:29:29 -0700 Subject: [PATCH] Support for ES2015 in backticks was added in Meteor 1.3.3 --- source/packages/modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/packages/modules.md b/source/packages/modules.md index b0ac531792..cf5ad3a54e 100644 --- a/source/packages/modules.md +++ b/source/packages/modules.md @@ -186,7 +186,7 @@ module.exports = incompleteCountDenormalizer You can also simply write `exports` instead of `module.exports` if you prefer. -Note that ES2015 code in [backticks](http://coffeescript.org/#embedded), for example an `import` statement in backticks, do *[not](https://github.com/meteor/meteor/issues/6000)* work; your `.coffee` files will be transpiled into JavaScript, but not then handed off to the `ecmascript` package for further transpiling. Any JavaScript you type in backticks will be passed through unmodified all the way to the browser or Node.js runtime. +As of Meteor 1.3.3, you can also enclose ES2015 code in [backticks](http://coffeescript.org/#embedded). ## Modular application structure