ondras / rot.js

ROguelike Toolkit in JavaScript. Cool dungeon-related stuff, interactive manual, documentation, tests!
https://ondras.github.io/rot.js/hp/
BSD 3-Clause "New" or "Revised" License
2.33k stars 255 forks source link

Do not freeze ROT exports #193

Closed funnisimo closed 3 years ago

funnisimo commented 3 years ago

Changed Rollup config so that exports from ROT are not frozen. This allows extension libraries to add directly to the ROT objects. For instance:

window.ROT.Util.distance = function(a, b) { ... }

ondras commented 3 years ago

Hmm, this looks somewhat incompatible with the ES6-modules version of rot.js (ES6 exports are immutable by design).

funnisimo commented 3 years ago

Ok.