Skip to content

Commit

Permalink
Merge pull request #17 from wagenet/patch-1
Browse files Browse the repository at this point in the history
Add line break and semicolon between files - #16
  • Loading branch information
joliss committed May 31, 2014
2 parents e7489a3 + 5005b5e commit 013b396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ES6Concatenator.prototype.write = function (readTree, destDir) {

helpers.assertAbsolutePaths([self.outputFile])
mkdirp.sync(path.join(destDir, path.dirname(self.outputFile)))
fs.writeFileSync(path.join(destDir, self.outputFile), output.join(''))
fs.writeFileSync(path.join(destDir, self.outputFile), output.join('\n;'))

self.cache = newCache

Expand Down

0 comments on commit 013b396

Please sign in to comment.