diff options
author | Rémi Tétreault <tetreault.remi@gmail.com> | 2016-12-20 21:33:18 -0500 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2017-01-14 07:23:07 +0100 |
commit | 0a2b7d186a620764d891ac701cf42b1a84f9e6d6 (patch) | |
tree | 755c229b9189b6b3b926ab2eefcd97e38e6c08ac /gulpfile.js | |
parent | 356657146a5df8c293c7030a0866cee61f88b4b6 (diff) | |
download | svg.js-0a2b7d186a620764d891ac701cf42b1a84f9e6d6.tar.gz svg.js-0a2b7d186a620764d891ac701cf42b1a84f9e6d6.zip |
Implement a more basic morph method for SVG.PathArray
The method expect the paths to use the exact same commands. It will not
attempt to modify them if they do not. Any more complex algorithm shall be
provided as a plugin instead in order to keep the size of the library down.
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index 65ef6cc..203dcd1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -80,7 +80,6 @@ var parts = [ , 'src/memory.js'
, 'src/selector.js'
, 'src/helpers.js'
-, 'src/makepathsmorphable.js'
, 'src/polyfill.js'
]
@@ -123,4 +122,4 @@ gulp.task('minify', ['unify'], function() { })
-gulp.task('default', ['clean', 'unify', 'minify'])
+gulp.task('default', ['clean', 'unify', 'minify'])
\ No newline at end of file |