Ryan Zimmerman

Results 239 comments of Ryan Zimmerman

Yeah, I'm going to close this as out of scope.

If someone wants this badly enough they're willing to submit a PR, we can consider it. But I don't see the point of adding it just for the sake of...

Closing for now; if someone wants to pick this up, add docs and unit tests, and fix merge conflicts, file a fresh PR.

Why can't you just pass in `directory/*.ejs` to exclude the `.png` files?

This version of EJS is no longer supported. https://github.com/mde/ejs/ (http://ejs.co) is the current version. Regarding your question, you would need to use `renderFile` for that. The syntax is slightly different...

Yeah, the function just appends at call time. This can be demonstrated by the fact that `` (scriptlet tag, not an output tag) will still output `from function`. If you...

I'm not completely closed to this idea. However, here's a couple of arguments against it: 1. It's not obvious whether these methods should use `fs.stat` or `fs.lstat`. `fs.lstat` would obviously...

> Side note: what is the difference between .ensureLink() and .ensureSymlink()? `.ensureLink()` creates a [hard link](https://en.wikipedia.org/wiki/Hard_link); `.ensureSymlink()` creates a [symbolic link](https://en.wikipedia.org/wiki/Symbolic_link). > One possible way to help make the end...

Does the promise returned by `processPostCSS` resolve or reject at all, or does it hang?

> To confirm, it doesn't reject or resolve anything or hang. It has to be doing something. A promise can either be pending, resolved, or rejected. Only those three states....