Merge branch '5.2.0' into chore/add-nodejs-10

This commit is contained in:
Kamil Myśliwiec
2018-07-25 19:56:49 +02:00
committed by GitHub
413 changed files with 58125 additions and 5279 deletions

View File

@@ -30,6 +30,16 @@ gulp.task('copy:ts', function() {
return gulp.packages(['packages/**/*.ts']).pipe(gulp.dest('./bundle'));
});
gulp.task('copy-docs', function() {
return gulp.src('Readme.md')
.pipe(gulp.dest('bundle/common'))
.pipe(gulp.dest('bundle/core'))
.pipe(gulp.dest('bundle/microservices'))
.pipe(gulp.dest('bundle/websockets'))
.pipe(gulp.dest('bundle/testing'));
});
gulp.task('clean:bundle', function() {
return gulp
.packages(['bundle/**/*.js.map', 'bundle/**/*.ts', '!bundle/**/*.d.ts'], { read: false })