Skip to content

Commit

Permalink
fix: fix filter to remove module for well known types
Browse files Browse the repository at this point in the history
  • Loading branch information
asjdf committed Feb 21, 2024
1 parent 89b0e02 commit 30d36c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

const tmpl = `
{{define "dependencies"}}
{{range .}}import * as {{.ModuleIdentifier}} from "{{.SourceFile}}"
{{range removeWellKnownTypes .}}import * as {{.ModuleIdentifier}} from "{{.SourceFile}}"
{{end}}{{end}}
{{define "enums"}}
Expand Down

0 comments on commit 30d36c2

Please sign in to comment.