Anthony Fu

Results 1220 comments of Anthony Fu

Generally LGTM, I think you could take the lead and merge it when you think it's ready. To be careful, we could do a few beta release before the stable...

I like the new interface, and well done! I am fine with `postinstall` approach (probably hard to make Vue expose them), but I think adding a section about `How it...

I think there should be no problem on that. /cc @lmiller1990 WDYT? We could ships a simple jest transformer via submodules just like other plugins, tho I am not very...

Or we could bypass the transform to `vue-jest` (as ppl are likely to use it when using jest), something like: ```ts const { transform } = require('vue2-script-setup-transform') module.exports = (source,...

Glad to see it works! v0.4.1 ships an experimental support for jest: ```bash npm i -D vue-jest ``` ```ts // jest.config.js module.exports = { transform: { '.*\\.(vue)$': 'unplugin-vue2-script-setup/jest', }, }...

I would suggest moving to https://github.com/vitest-dev/vitest, there isn't much space for us to support plugin transformations in jest properly

I am working on a Rust implementation of PSVG as my practice of learning it (it was painful, but I starting liking some of the ways of doing things it...

Yeah, maybe don't take the Rust thing too seriously? I guess it would be much easier to use TypeScript the write the interpreter than Rust (at least to me) also...

> Option ...Yeah exactly. But I found `Result` quite handy in terms of error handling. Sent you the access invitation if you want to check out :P https://github.com/antfu-sponsors/psvg-rust

Do we have any other examples of this category? I am not so sure to have a category for only one module atm