Releases: lorefnon/ts-sql-codegen
Releases · lorefnon/ts-sql-codegen
v3.21.0
v3.20.2
v3.20.1
v3.20.0
v3.19.0
What's Changed
- Add support to new custom types by @juanluispaz in #14
Full Changelog: v3.18.0...v3.19.0
Support for CRUD Repos to simplify single table operations
- You can now pass
export: { crudRepository: true }
toGenerator
to enable generation of CRUD repository classes that simplify common single table operations
Raw content injection support
-
You can now pass the
rawContent
option to inject arbitrary raw content into all the generated filesconst generator = new Generator({ rawContent: { before: "/* eslint-disable */", }, })