diff options
author | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2016-10-04 14:59:20 +0200 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2016-10-04 14:59:20 +0200 |
commit | b7061c65d5c89078605717ccd0c50945b0941f1e (patch) | |
tree | 773cc5cc6c50fa95b490e5970c7f68700b650c02 /gulpfile.js | |
parent | b60779c88889f218eb37fe2d42bd622cda4b3eb9 (diff) | |
download | svg.js-b7061c65d5c89078605717ccd0c50945b0941f1e.tar.gz svg.js-b7061c65d5c89078605717ccd0c50945b0941f1e.zip |
try to run test with individual files instead of the concated version so it is easier to track down the source file
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 56 |
1 files changed, 2 insertions, 54 deletions
diff --git a/gulpfile.js b/gulpfile.js index 7203ccf..bf7b7a4 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -28,60 +28,8 @@ var headerLong = ['/*!' var headerShort = '/*! <%= pkg.name %> v<%= pkg.version %> <%= pkg.license %>*/'
// all files in the right order (currently we don't use any dependency management system)
-var parts = [
- 'src/svg.js'
-, 'src/regex.js'
-, 'src/utilities.js'
-, 'src/default.js'
-, 'src/color.js'
-, 'src/array.js'
-, 'src/pointarray.js'
-, 'src/patharray.js'
-, 'src/number.js'
-, 'src/element.js'
-, 'src/fx.js'
-, 'src/boxes.js'
-, 'src/matrix.js'
-, 'src/point.js'
-, 'src/attr.js'
-, 'src/transform.js'
-, 'src/style.js'
-, 'src/parent.js'
-, 'src/ungroup.js'
-, 'src/container.js'
-, 'src/viewbox.js'
-, 'src/event.js'
-, 'src/defs.js'
-, 'src/group.js'
-, 'src/arrange.js'
-, 'src/mask.js'
-, 'src/clip.js'
-, 'src/gradient.js'
-, 'src/pattern.js'
-, 'src/doc.js'
-, 'src/shape.js'
-, 'src/bare.js'
-, 'src/use.js'
-, 'src/rect.js'
-, 'src/ellipse.js'
-, 'src/line.js'
-, 'src/poly.js'
-, 'src/pointed.js'
-, 'src/path.js'
-, 'src/image.js'
-, 'src/text.js'
-, 'src/textpath.js'
-, 'src/nested.js'
-, 'src/hyperlink.js'
-, 'src/marker.js'
-, 'src/sugar.js'
-, 'src/set.js'
-, 'src/data.js'
-, 'src/memory.js'
-, 'src/selector.js'
-, 'src/helpers.js'
-, 'src/polyfill.js'
-]
+// see package.json `files` section
+var parts = pkg.files
gulp.task('clean', function() {
return del([ 'dist/*' ])
|