If you use this plugin to create a single downloadable template file from many different pug files, it adds the following line to the top of your template file:
var pug = pug || require('pug/lib/runtime');
That file no longer exists in the main pug package, and when combined with #169, that pretty much means you're screwed since your template file will attempt to reference a non-existent file.
This should be changed to require pug-runtime instead.
If you use this plugin to create a single downloadable template file from many different pug files, it adds the following line to the top of your template file:
That file no longer exists in the main
pugpackage, and when combined with #169, that pretty much means you're screwed since your template file will attempt to reference a non-existent file.This should be changed to require
pug-runtimeinstead.