RobinThrift / metalsmith-tutorial

A Metalsmith Tutorial Repo
http://www.robinthrift.com/posts/metalsmith-part-1-setting-up-the-forge
43 stars 10 forks source link

Empty build folder #2

Closed rnarian closed 8 years ago

rnarian commented 9 years ago

I had to adjust the build() function in order to get Metalsmith to generate files in /build:

(...)
.build(function(err) {
  if (err) throw err;
});
(...)

Otherwise it would just stay empty. No idea why though. :pensive: