Skip to content

Commit

Permalink
fix incorrect commander.out reference - closes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmck committed Oct 8, 2014
1 parent c52ed87 commit f77e7d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/6to5
Expand Up @@ -136,7 +136,7 @@ if (commander.outDir) {
data = data.join("");

if (commander.outFile) {
fs.writeFileSync(commander.out, data);
fs.writeFileSync(commander.outFile, data);
} else {
console.log(data);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "6to5",
"description": "Turn ES6 code into vanilla ES5 with source maps and no runtime",
"version": "1.0.0",
"version": "1.0.1",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://github.com/sebmck/6to5",
"repository": {
Expand Down

0 comments on commit f77e7d7

Please sign in to comment.