diff options
| author | Ben Beltran <ben@nsovocal.com> | 2017-04-12 00:22:31 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2017-04-12 00:22:31 -0500 |
| commit | f2a4303543b0b0c1a62681c74244176aa778f417 (patch) | |
| tree | f95798bb6a0e62d39e4f9a8c234791fd3971a6f3 /gulpfile.js | |
| parent | d063bd00f11577e700c848d220ac6505921632ab (diff) | |
| parent | 100b8422835fc876c8cff2c2960b63e95a01b744 (diff) | |
Merge branch 'release/2.0.0'2.0.0
Diffstat (limited to 'gulpfile.js')
| -rw-r--r-- | gulpfile.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index dcb689b..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,28 +0,0 @@ -'use strict'; - -const Gulp = require('gulp'); -const Babel = require('gulp-babel'); -const Concat = require('gulp-concat'); -const Rename = require('gulp-rename'); -const Uglify = require('gulp-uglify'); - -Gulp.task('build', function() { - Gulp.src([ - 'lib/serpentity.js', - 'lib/serpentity/entity.js', - 'lib/serpentity/node.js', - 'lib/serpentity/node_collection.js', - 'lib/serpentity/component.js', - 'lib/serpentity/system.js' - ]) - .pipe(Babel({ - presets: ['es2015'] - })) - .pipe(Concat('serpentity.js')) - .pipe(Gulp.dest('dist')) - .pipe(Uglify()) - .pipe(Rename({ - suffix: '.min' - })) - .pipe(Gulp.dest('dist')); -}); |