observe the results inside account-snapshot/gen/snapshot/* files, and account-snapshot/src/reducers/snapshot.ts
Notes:
Using casing style for modules names leads to incorrect imports:
For instance: if I create a module using the name MyModule (with the editor), and then I generate the document model code, the imports inside the code is being referenced as import {...} from '../som/path/MyModule', but the file is created as my-module.ts, which causes an error in the import
Description:
code generated inside
gen
folder files contains blank imports, and seems that there's code that is not being generated in thereducers.ts
fileSteps to reproduce:
account-snapshot/gen/snapshot/*
files, andaccount-snapshot/src/reducers/snapshot.ts
Notes:
import {...} from '../som/path/MyModule'
, but the file is created asmy-module.ts
, which causes an error in the import