]> git.r.bdr.sh - rbdr/serpentity/blame - gulpfile.js
Adds babel to devDependencies
[rbdr/serpentity] / gulpfile.js
CommitLineData
bf8f1394
BB
1'use strict';
2
3let gulp = require('gulp');
4let concat = require('gulp-concat');
74892a8f
BB
5
6gulp.task('build', function() {
7 gulp.src([
bf8f1394
BB
8 'lib/serpentity.js',
9 'lib/serpentity/entity.js',
10 'lib/serpentity/node.js',
11 'lib/serpentity/node_collection.js',
12 'lib/serpentity/component.js',
13 'lib/serpentity/system.js'
14 ])
74892a8f 15 .pipe(concat('serpentity.js'))
bf8f1394 16 .pipe(gulp.dest('dist'));
74892a8f 17});