Browse Source

Fix CoffeeScript 1.12 support

shortcutme 6 years ago
parent
commit
1f83b6691b
1 changed files with 2 additions and 3 deletions
  1. 2 3
      tools/coffee/coffee.wsf

+ 2 - 3
tools/coffee/coffee.wsf

@@ -42,7 +42,7 @@ function convert(input, output) {
     }
 
     var coffee;
-    if (!input) { 
+    if (!input) {
         // Read all input data from STDIN
         var chunks = [];
         while (!WScript.StdIn.AtEndOfStream)
@@ -62,8 +62,7 @@ function convert(input, output) {
                 return new f;
             }
 
-        var js = CoffeeScript.compile(coffee);
-
+        var js = CoffeeScript.compile(coffee, {filename: "temp.coffee"});
         if (!output) {
             WScript.StdOut.Write(js);
         }