JackPot

Results 30 comments of JackPot

> Can you provide a minimal demo? Thanks sure, i added you as a collaborator, here is the repo: https://github.com/pot-code/rsbuild-vue-gen-routes

> I didn't find api.transform related code in this repo. > > Rsbuild's transform API is implemented based on Rspack's loader, which means that after a module is processed by...

> Can you explain "low level processing" in more depth? the ability to process raw file content without the interference of internal loaders

> Can you explain "low level processing" in more depth? maybe it's a little late but thank you for listening. I have migrated to unplugin and it just works. rsbuild...

seems its impossible to map getter().field to another name, i have the situation where the target value could be set from the result struct field returned from getter

> @pot-code please create a new issue for this with a concrete example. hmmm...i can add another method to make it work so it's not a big issue, i thought...

Updates: ```kotlin @Column(name = "parent_id") var parentId: Long, ``` if i change the `parentId` of entity type to non-nullabe type, it works

Update: ```kotlin entityViewConfiguration.registerTypeConverter( Long::class.javaObjectType, LongId::class.java, LongToLongIdTypeConverter() ) ``` i managed to solve it with `javaObjectType`, you never know where kotlin is going to bite you...

you can even make it work in rsbuild? ``` × ESModulesLinkingError: export 'routes' (imported as 'routes') was not found in 'vue-router/auto-routes' (possible exports: NavigationFailureType, RouterLink, RouterView, START_LOCATION, createMemoryHistory, createRouter, createRouterMatcher,...