Chunpeng Huo

Results 351 comments of Chunpeng Huo

Absolutely agree on your first question. On second: Both `noView` and `inlineView` have this similar api. I can think about two type of usages. 1. `@noView(['a.css'], 'base/url');`, this looks unnecessary....

Right, the module id is resolved by inlineView implementation when baseUrl is present. Somewhere is broken before module id was finalized. It seems like a broken api feature need to...

You can load inline css string through aurelia api, like aurelia-dialog did.

It doesn't sound too difficult to me, but I am using a different html parser. As reference, with htmlparser2, I do ```javascript let parser = new htmlparser.Parser({ onopentag: function(name, attrs)...

That's unfortunate. The parser looks quite small. It might not be too difficult to bring the code in and customize it, but that has risk on introducing bug. Personally I...

Probably jspm setup. @bigopon pls mark this repo archived.

## Note for implementation https://github.com/estree/estree/blob/master/stage3/import-attributes.md EStree which meriyah implements has different definition of this syntax.

BTW I don't think the typescript screenshot is a correct reference :-) The typescript parser thinks that's the legacy with statement, not part of the import declaration. You can see...

I cannot guarantee a time frame for this feature as I don't have enough bandwidth on open source projects right now. But I will put it on my TODO list...

Bun has a native parser. Maybe you can talk to them to expose some APIs. It's probably not in extree syntax, but nothing beats Bun's performance. > the parser in...