Chunpeng Huo

Results 332 comments of Chunpeng Huo

Was writing on my phone. https://github.com/buttonwoodcx/bcx-aurelia-reorderable-repeat

You need to go down to bcx-aurelia-dnd or we can create a wrapper lib to reorder grid. Reorderable-repeat can handle flex layout even with row/column wrapping. Just set the order...

@mttmccb would you mind to help testing https://github.com/aurelia/cli/pull/862 on your big project?

For gulp watcher, I can listen to "add" and "unlink" events and touch related files. (Update: it works.) https://github.com/gulpjs/glob-watcher But there is no such customization I can find in webpack...

If you start an Aurelia 2 plugin project, the html files will be compiled by `@aurelia/webpack-loader` into js code during `npm run build`. The final npm package contains no original...

I think the trend is to use name "create-aurelia-app"? (Following create-react-app and create-vue-app). It will be used as "npm create aurelia-app", instead of "npm create aurelia" in this PR.

When we enabled cjs and mjs files, the js files were kept for backwards compatibility in case users have explicitly used them. I agree we need to clean the dist...

It will be difficult. The comments in meriyah are not parsed as normal flow of tokens (ESTree spec didn't define comment as a node). There is `onComment` option (or callback)...

There are plenty of great JS parsers in lower languages, like swc, oxc, and also Bun's internal parser. oxc even provides AST very similar to ESTree. https://docs.rs/oxc_ast/latest/oxc_ast/ For us, there...