-
Notifications
You must be signed in to change notification settings - Fork 138
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 declaration of ICAL var #470
Conversation
@@ -54,7 +54,8 @@ | |||
"node": ">=10" | |||
}, | |||
"scripts": { | |||
"test": "grunt test-node" | |||
"test": "grunt test-node", | |||
"prepare": "grunt" |
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.
Can you explain this change?
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.
prepare script is run by npm when installing from git sources as well as before npm publish - this means when install this fork without publishing to npm repo the code is built at install.
Hi, any updates on this topic? |
This allows the module to not crash when used from nodejs
This shouldnt cause any problems with usage in the browser
Similar to
#449
#329