diff options
| author | Ben Beltran <ben@nsovocal.com> | 2014-08-12 19:25:52 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2014-08-12 19:25:52 -0500 |
| commit | 60a6915a0b24975e28a02b28e43d34f6dbb15625 (patch) | |
| tree | ccf114757150425e9ab3e4587f09cd1795567d27 /gulpfile.js | |
| parent | a2949b6a6621627d0382fd1702d067b7b82322ed (diff) | |
Components extend without having to define initv0.1.6
Diffstat (limited to 'gulpfile.js')
| -rw-r--r-- | gulpfile.js | 11 |
1 files changed, 11 insertions, 0 deletions
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')) }); |