feat: FakerError#718
feat: FakerError#718ST-DDT merged 15 commits intofaker-js:mainfrom xDivisionByZerox:707-common-faker-js-error
Conversation
Codecov Report
@@ Coverage Diff @@
## main #718 +/- ##
==========================================
- Coverage 99.34% 99.34% -0.01%
==========================================
Files 1924 1925 +1
Lines 177010 177024 +14
Branches 908 909 +1
==========================================
+ Hits 175858 175871 +13
- Misses 1096 1097 +1
Partials 56 56
|
Shinigami92
left a comment
There was a problem hiding this comment.
Please re-export FakerError in src/index.ts
How are things exported in the root |
|
@xDivisionByZerox You just want to do in import { FakerError } from './errors/faker-error';
// ...
export { FakerError }; |
But you know that this can be simplified, do you? export{ FakerError } from './errors/faker-error';That's why I was asking because I have seen these redundant import => export statements... |
Yeah I know, but I'm not yet used to it |
I personally actually prefer this form, as it's shorter and cleaner what comes from where... |
|
The export is still missing @xDivisionByZerox right? |
Shinigami92
left a comment
There was a problem hiding this comment.
index export still missing
|
Yes the export was still missing but is implemented now. |
Co-authored-by: ST-DDT <ST-DDT@gmx.de>
closes #707