Skip to content
This repository was archived by the owner on Oct 24, 2021. It is now read-only.

Support for ES2015 in backticks was added in Meteor 1.3.3 #75

Merged
merged 1 commit into from
Aug 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/packages/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down