From 950881821afc3a5e47139af3694a211962621659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heikki=20Yl=C3=B6nen?= Date: Sun, 21 Feb 2016 13:33:57 +0200 Subject: [PATCH] Add missing url parameter to compile call Related riot issue: https://github.com/riot/riot/issues/467 --- src/index.ls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ls b/src/index.ls index c63869e..ae66cae 100644 --- a/src/index.ls +++ b/src/index.ls @@ -19,7 +19,7 @@ module.exports = (opts = {})-> delete opts.parsers try - compiled-code = compile file.contents.to-string!, opts + compiled-code = compile file.contents.to-string!, opts, file.path catch err return callback new gutil.PluginError \gulp-riot, "#{file.path}: Compiler Error: #{err}"