I am using yeoman for creating a scaffold for my app.
I want to copy all the directory recursively thats why I am using this.directory
method
this.directory('views/static/views', '.views/static/views');
Now whenever I am running it shows an error showing <%= title %> in file index.html during copying is not defined.
This <%= title %>
is not the part of Templating but I am using this for my other purpose.
I want to disable the templating while copying using this.directory
method.?