You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 asitiriri-async
. But the thing is,itiriri-async
liststslib
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.The text was updated successfully, but these errors were encountered: