Dylan Piercey

Results 152 comments of Dylan Piercey

@Rich-Harris I ran into the same issue using the webpack plugin for my client side build (works fine for my server side build). Here is a gist which contains triggers...

Would it be possible to add (async) hooks for build start and build end? I'm thinking similar to rollups buildStart and buildEnd hooks. Right now we have `setup`, but it's...

That sounds great. For my current use case I was planning on making the inputOptions be derived from a file on disk, and so it would be nice if it...

> I plan for it to get the final BuildResult and to run right before the final result is returned. One thing that still needs a decision is what to...

@stevenvachon I'm assuming the parser is going to have some similar JSX gotchas like `className` and `htmlFor`? Also does it support #each in its current state?

@antonmedv in the case of lodash, yes. But not in the case of an esmodule only package. For example in the new [luxon](https://github.com/moment/luxon) date library I found myself wanting to...

@antonmedv and thats where it gets tricky, I think using the esmodule syntax here is verbose and kind of ugly. What about this: ```console jsize luxon.DateTime ``` It's a bit...

Yeah, I agree. Lets let it sit and see if we can come up with any other ideas and then perhaps tackle this after next week?

We wouldn't really have to parse anything with the current implementation as far as I can tell. Couldn't we just directly pass whatever statement the user provides through webpack? This...