Gajus Kuizinas
Gajus Kuizinas
@gogson Did you have a chance to look into this?
Is there currently a way to combine dependency-cruiser with rollup? Dependency cruiser is showing a dependency graph but fails to identify branches that would not be there if tree-shaking was...
Any chance of this getting addressed? It is currently being flagged as the biggest dead weight in our app.
I have changed the formatting of the condition too, because as it is, the current condition is neither correct (it returns on the first positive condition, either writable or configurable),...
To clarify: > 17:35 not-an-aardvark What issue are were you having that is fixed by the change? > 17:39 gajus I have described that in the github issue > 17:39...
To replicate the issue: ``` js import Promise from 'bluebird'; const error = new Error('test'); Object.defineProperty(error, 'stack', { value: 'test', writable: true, enumerable: false, configurable: false }); new Promise(() =>...
@petkaantonov Is there a reason for not merging this?
> perhaps it's better to use propertyIsConfigurable separately? I am not certain whats that in reference to.
This is not my field of speciality, but if someone works on this, I will happily donate to the project.
Same for `unresolved imports`. I don't want `unimported` to report unresolved files (that check is better handled by tsc / webpack). However, ```json "ignoreUnresolved": [ "**" ], ``` still surfaces...