]> source.dussan.org Git - svg.js.git/commit
Fix build chain so that we now have multiple builds. Details below:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Wed, 28 Nov 2018 11:57:52 +0000 (12:57 +0100)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Wed, 28 Nov 2018 11:57:52 +0000 (12:57 +0100)
commit58fd0d68bc8b46b23f8cdc65190f08d4e524eb57
tree04247b959cb0517eb4a891c6afbabb734bb892bb
parent08b27426fa631a6200a5423161770acab50403bd
Fix build chain so that we now have multiple builds. Details below:

- svg.js: The esm bundle
- svg.min.js: The bundle for all browsers for maximum support
- svg.node.js: The bundle for node
- polyfill.js: Using svg.min.js requires this polyfill in case the Browser does not understand all of ./config/polyfillList.js
- polyfillIE.js: This is required when you use IE11 (polyfill.js still required)

Please note, that not all test pass for IE11 due to its rounding issues and wrong calculation of bbox.
Also note, that `defaultPrevented` is not working for CustomEvents in IE11.
34 files changed:
.config/karma.conf.common.js
.config/karma.conf.js
.config/karma.conf.saucelabs.js
.config/polyfillList.js
.config/polyfillListIE.js [new file with mode: 0644]
.config/pretest.js
.config/rollup.config.js
.config/rollup.polyfills.js
.travis.yml
bower.json
dirty.html
dist/polyfills.js
dist/polyfillsIE.js [new file with mode: 0644]
dist/svg.js
dist/svg.js.map [new file with mode: 0644]
dist/svg.min.js [new file with mode: 0644]
dist/svg.min.js.map [new file with mode: 0644]
dist/svg.node.js [new file with mode: 0644]
dist/svg.node.js.map [new file with mode: 0644]
package-lock.json
package.json
spec/SpecRunner.html
spec/spec/arrange.js
spec/spec/event.js
spec/spec/helper.js
spec/spec/morphing.js
spec/spec/runner.js
spec/spec/svg.js
src/animation/Morphable.js
src/main.js
src/polyfills/children.js [new file with mode: 0644]
src/polyfills/innerHTML.js [new file with mode: 0644]
src/utils/adopter.js
src/utils/methods.js