blob: 3c4352968cb259e529d7f1df5f22b021921a2fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
'use strict';
let gulp = require('gulp');
let concat = require('gulp-concat');
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(concat('serpentity.js'))
.pipe(gulp.dest('dist'));
});
|