]>
Commit | Line | Data |
---|---|---|
bf8f1394 BB |
1 | 'use strict'; |
2 | ||
3 | let gulp = require('gulp'); | |
4 | let concat = require('gulp-concat'); | |
74892a8f BB |
5 | |
6 | gulp.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 | }); |