X-Git-Url: https://git.r.bdr.sh/rbdr/serpentity/blobdiff_plain/74892a8fd50cdc2a1294d776dc246912de9f94d5..3db7d19815d24241bbe60c9afbb8b3f60d000550:/gulpfile.js diff --git a/gulpfile.js b/gulpfile.js index f1fb5e6..dcbfdc7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -12,6 +12,17 @@ gulp.task('build', function() { 'lib/serpentity/system.js', ]) .pipe(uglify()) + .pipe(concat('serpentity.min.js')) + .pipe(gulp.dest('dist')) + + gulp.src([ + 'lib/serpentity/serpentity.js', + 'lib/serpentity/entity.js', + 'lib/serpentity/node.js', + 'lib/serpentity/node_collection.js', + 'lib/serpentity/component.js', + 'lib/serpentity/system.js', + ]) .pipe(concat('serpentity.js')) .pipe(gulp.dest('dist')) });