Closed tozes closed 4 years ago
In version 1.5.0, main was changed to point to lib/support instead of src which broke type checking so in order to make it work with the current package configuration, we need to explicitly indicate the main types declaration file:
main
lib/support
src
before:
... "main": "lib/support", ...
after
... "main": "lib/support", "types": "lib/index.d.ts", ...
@tozes thanks, should have had typedef tests
:tada: This PR is included in version 1.5.1 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
In version 1.5.0,
main
was changed to point tolib/support
instead ofsrc
which broke type checking so in order to make it work with the current package configuration, we need to explicitly indicate the main types declaration file:before:
after