Skip to content

Commit

Permalink
fix: import from types instead of schema
Browse files Browse the repository at this point in the history
Signed-off-by: ryanwolhuter <dev@ryanwolhuter.com>
  • Loading branch information
ryanwolhuter committed Jan 22, 2024
1 parent 1a64636 commit 279d02b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
to: "<%= rootDir %>/<%= h.changeCase.param(documentType) %>/src/utils.ts"
unless_exists: true
---
export {};
export {};
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ to: "<%= rootDir %>/<%= h.changeCase.param(documentType) %>/gen/reducer.ts"
force: true
---
import { ImmutableStateReducer, utils } from "document-model/document";
import { <%= h.changeCase.pascal(documentType) %>State, <%= h.changeCase.pascal(documentType) %>LocalState, z } from './schema';
import { <%= h.changeCase.pascal(documentType) %>State, <%= h.changeCase.pascal(documentType) %>LocalState, z } from './types';
import { <%= h.changeCase.pascal(documentType) %>Action } from './actions';

<% modules.forEach(m => { _%>
Expand Down

0 comments on commit 279d02b

Please sign in to comment.