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
{{ message }}
This repository has been archived by the owner on Dec 3, 2022. It is now read-only.
I'm not sure how feasible this is but I know serverless-webpack made webpack a peer dependency, making it so the user can use an arbitrary version of webpack with serverless-webpack. Can we do something similar with jasmine-ts?
The text was updated successfully, but these errors were encountered:
When we use peer dependencies, every consumer of this library would be forced to install another dependency (ts-node) to get this tool running. Also the versions have to be kept compatible on each consuming package configuration.
I'm not sure whether this is desirable, since you don't necessarily want to use ts-node directly within your package.
with typescript 2.4.1 there was a breaking change to ts-node. ts-node now fails to find any @types navigation files
microsoft/TypeScript#16772 (comment)
this is fixed in ts-node v3.1.0
I'm not sure how feasible this is but I know serverless-webpack made webpack a peer dependency, making it so the user can use an arbitrary version of webpack with serverless-webpack. Can we do something similar with jasmine-ts?
The text was updated successfully, but these errors were encountered: