Zearin
Zearin
> Does this change fix #211 (silent fail on build with no args)? …Sort of. :) One of the following must be done: ```javascript let files = await metalsmith.build() ```...
I’ve pushed a few small changes to my branch, and marked it as `3.0.0-alpha.0.0.1`. Should I open a Pull Request? (That will make it easier to compare code, comment on...
@HaoZeke I have been in your exact situation. I am unhappy with Metalsmith’s logging situation, and I hope to do something about it in v3.0. But something that is helpful...
Can you try going without gulp-metalsmith just long enough to use `metalsmith-debug-ui` and determine the problem? You can always figure it out and then go back to your normal setup...
I’ve been stuck on this problem for _days_! This **definitely** needs to be added to the documentation, because it’s not at all obvious to keep the same non-JS interpolation syntax...
…Actually, I think I’m still stuck on this. My setup is a little different: ### Front Matter ``` ---js { layout: "default", pagination: { data: calendar.index, size: 1, alias: calDate,...
@pdehaan Thanks for testing my problem! Unfortunately, I can’t replicate your success. :-( I’m not sure, but I think it *might* have something to do with my using Pug as...
Waitasec! I spoke too soon. I am getting successful compilation* with Pug using the following: ``` ---js { layout: "default", pagination: { data: "calendar.index", size: 1, alias: "calDate" }, eleventyComputed:...
Okay. It’s iterating through the data, but it just keeps overwriting the same page. I got the following output from some of Eleventy’s variables.... ### `pagination` content ```js { data:...
Forgot to show the front matter that yielded the results from previous post… Here it is: ```js ---js { layout: "default", pagination: { data: "calendar.index", size: 1, alias: "calDate" },...