You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can reduce users' cognitive load by organizing the generated types into modules, making it easier for them to browse the wrap directory and understand what was generated.
Each imported wrap should have its own named directory. Each Module class should be in its own file, with a separate file for the types.
App codegen currently puts all generate types in a single file, even when multiple wraps were imported.
Example: https://github.com/polywrap/wrap-abi-bindgen/blob/main/implementations/app-typescript/src/__tests__/cases/000-sanity/output/types.ts
We can reduce users' cognitive load by organizing the generated types into modules, making it easier for them to browse the
wrap
directory and understand what was generated.Each imported wrap should have its own named directory. Each
Module
class should be in its own file, with a separate file for the types.Current:
Proposed:
The text was updated successfully, but these errors were encountered: