Releases: willstocks/dynamically-polyfill-features-for-a-script
Releases · willstocks/dynamically-polyfill-features-for-a-script
v0.03-beta.1
Make the script more "dynamic" (Issue #4)
- Allow dynamic working - CDN usage or self-hosted
- There's now the ability to call this function off of a CDN as opposed to having to include it within a local/self-hosted JS file. Example function in README
- Tweak deployment instructions to cater for "CDN" loading of script
Optimise performance (a little)
- Store polyfill requirements in an array and grab them all via a single request as opposed to making (potentially) multiple calls to polyfill.io
- Remove erroneous return
- MINIFICATION!!!!
- Further caching outside of
forloops/if's
Update README
- Updated script size stats
- Updated deployment instructions
v0.02
- Update README documentation
- Include deployment instructions
- Include script sizing info
- Create minified version of script
- Rename and restructure variables/functions to make them a bit more understandable
- Make it easier to execute required function once polyfills and scripts are loaded
- Minor performance improvements:
- Utilizing for loop value caching of array length
- Remove all console.log() and console.warn() from minified script
- Check window.FEATURE as well as FEATURE in window
- Reword console.log(), console.warn() and console.error() messages to be more user friendly
v0.02-beta.3
Update dynamicpolyfill.min.js To accommodate changes to the non-minified version of the script - make it easier/simpler to update variables!
v0.02-beta.2
Create dynamicpolyfill.min.js Made it actually "useful" this time, although can be a bit tricky to use still
v0.01-beta
Update readme with template