diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-03-16 12:48:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 12:48:20 +0100 |
commit | 9bfcbc184ec99631ea7d2b912e79b1edde17a111 (patch) | |
tree | 46b78b65c8855046e471f6a5254da0b18df9c4f9 /gulpfile.js | |
parent | 3409a2150705f679238300c56c05ea144e9ad7bd (diff) | |
download | svg.js-9bfcbc184ec99631ea7d2b912e79b1edde17a111.tar.gz svg.js-9bfcbc184ec99631ea7d2b912e79b1edde17a111.zip |
unified all boxes (#634)
unified all boxes
- SVG.Box for everything
- bbox, rbox and viewbox as methods
- boxes can be created with string, array, object, list...
- added helper to simplify boxes code
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 368ef85..08ba58f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -40,7 +40,6 @@ var parts = [ , 'src/number.js'
, 'src/element.js'
, 'src/fx.js'
-, 'src/boxes.js'
, 'src/matrix.js'
, 'src/point.js'
, 'src/attr.js'
@@ -49,7 +48,6 @@ var parts = [ , 'src/parent.js'
, 'src/flatten.js'
, 'src/container.js'
-, 'src/viewbox.js'
, 'src/event.js'
, 'src/defs.js'
, 'src/group.js'
@@ -82,6 +80,7 @@ var parts = [ , 'src/selector.js'
, 'src/helpers.js'
, 'src/polyfill.js'
+, 'src/boxes.js'
]
gulp.task('clean', function() {
|