Reputation: 3231
Given the following file, and a newly downloaded version of Atom 1.0, how do I preprocess / run it?
"use babel";
function* count(n){
console.log(n);
}
The "use babel" is as per this post on the Atom blog.
Upvotes: 3
Views: 773
Reputation: 946
This pragma is related to creating packages in atom. If you want to transpile using babel you need to use the babel CLI or another method (task runner: grunt, gulp i.e).
Upvotes: 2