labs42io / itiriri-async

A library for asynchronous iteration.

Home Page:https://labs42io.github.io/itiriri-async

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tslib dependency should not be in devDependencies

tsani opened this issue · comments

When installing production-only dependencies for our app, we use npm install --production, which does not install devDependencies neither for our app or any of our app's dependencies such as itiriri-async. But the thing is, itiriri-async lists tslib as a devDependency. tslib is the typescript runtime, so it should be a production dependency. In fact, our app fails to run unless we install tslib separately ourselves becausee of this.