Skip to content

Commit

Permalink
fix(cli): redundant import
Browse files Browse the repository at this point in the history
  • Loading branch information
Shchepotin committed Feb 1, 2025
1 parent c8e3921 commit 38c1d51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ to: src/<%= h.inflection.transform(name, ['pluralize', 'underscore', 'dasherize'
before: "} from 'class-transformer'"
skip_if: \Transform,
---
<% if (isAddToDto && (kind === 'reference' || kind === 'duplication' || (kind === 'primitive' && type === 'Date'))) { -%>
<% if (isAddToDto && (kind === 'primitive' && type === 'Date')) { -%>
Transform,
<% } -%>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ to: src/<%= h.inflection.transform(name, ['pluralize', 'underscore', 'dasherize'
before: "} from 'class-transformer'"
skip_if: \Transform,
---
<% if (isAddToDto && (kind === 'reference' || kind === 'duplication' || (kind === 'primitive' && type === 'Date'))) { -%>
<% if (isAddToDto && (kind === 'primitive' && type === 'Date')) { -%>
Transform,
<% } -%>
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ to: src/<%= h.inflection.transform(name, ['pluralize', 'underscore', 'dasherize'
before: "} from 'class-transformer'"
skip_if: \Transform,
---
<% if (isAddToDto && (kind === 'reference' || kind === 'duplication' || (kind === 'primitive' && type === 'Date'))) { -%>
<% if (isAddToDto && (kind === 'primitive' && type === 'Date')) { -%>
Transform,
<% } -%>

0 comments on commit 38c1d51

Please sign in to comment.