So I noticed that the dist file `v-tooltip.min.js` shipped with the latest release is not compatible with older browsers like IE11. This is the difference in the min file that causes the IE issues v2.0.3 ```js mounted:function(){var e=this;Ho(), //... ``` v2.1.2 ```js mounted(){Eo(),this.$nextTick((()=>{ //... ``` Since I currently don't transpile node_modules with babel and don't really want to: was this change of using ES6+ in the dist file intended?