debabratapatra/ngtreegrid

Build error due to typo in the imports of tree-head.component.ts

Closed this issue · 1 comments

Describe the bug
When performing a npm build of the project using the library, a TS2307 error occurs due to a typo (case sensitivity) in the imports of the tree-head.component.ts file.

import { Store } from '../../../../Store/Store'; should be import { Store } from '../../../../store/Store'; as the directory is named store (mind the lowercase).

To Reproduce
Steps to reproduce the behavior:

  1. Perform a npm build --configuration=production --aot

Expected behavior
Build is successful and does not throw a TS2307 error.

Screenshots
image

Additional context
The error happens systematically when running the build using Gitlab CI; no errors during the same build using a local Windows 10 workstation.

@cfroment thanks for describing the bug. I think I fixed this bug. Please use the latest build(3.3.2). Please let me know if this fixes this issue.