Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkloubert committed May 31, 2017
1 parent 6c1d5da commit 6dd6719
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log (vs-deploy)

## 9.13.1 (May 31st, 2017; CoffeeScript)
## 9.13.2 (May 31st, 2017; CoffeeScript)

* added [CoffeeScript](https://github.com/mkloubert/vs-deploy/wiki/targetoperations#compile-) compiler support

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vs-deploy",
"displayName": "Deploy",
"description": "Commands for deploying files of your workspace to a destination.",
"version": "9.13.1",
"version": "9.13.2",
"publisher": "mkloubert",
"engines": {
"vscode": "^1.6.0"
Expand Down
2 changes: 1 addition & 1 deletion src/compilers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ export function compileCoffeeScript(opts?: CoffeeScriptCompilerOptions): Promise
return;
}

let coffeeCode = data.toString('utf8');
let coffeeCode = data.toString(enc);
let jsCode = CoffeeScript.compile(coffeeCode, opts);

let outDir = Path.dirname(f);
Expand Down

0 comments on commit 6dd6719

Please sign in to comment.