-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the types/
folder to the published NPM package
#146
Conversation
Never mind, wasn't aware of https://www.npmjs.com/package/@avro/types |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good; just one comment.
package.json
Outdated
@@ -64,5 +66,8 @@ | |||
"repository": { | |||
"type": "git", | |||
"url": "git://github.com/mtth/avsc.git" | |||
}, | |||
"dependencies": { | |||
"stream": "0.0.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this for?
Currently, `tsc --strict` warns for projects with a dependency on the latest avsc (5.1.2) due to the folder types/ not being included in the published package.
Most of those changes were intended for another project and accidentally commited while still in this folder.
|
Thanks! |
Currently,
tsc --strict
warns for projects with a dependency onthe latest avsc (5.1.2) due to the folder types/ not being included in the
published package.