Reputation: 10536
I would like to add my own copyright statement and license text on top of a minified file, that contains some third party libraries as well as my own code. Can I do this without worries, if I keep the license comments of the third party libraries (all MIT license) intact?
So, for clarification, my final file would look somewhat like this:
/* my license */
/* underscore license */
[ ... minified underscore code ...]
/* jquery license */
[ ... minified jquery code ...]
[ ... my minified code ...]
Upvotes: 0
Views: 553
Reputation: 368
Both underscore and jQuery are licensed under the MIT license, so as long as you keep those licenses intact in the code, you should be fine.
Upvotes: 2