From e2de97908138ae6f747d01728780da59c1634121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20My=C5=9Bliwiec?= Date: Thu, 5 Jul 2018 14:38:30 +0200 Subject: [PATCH] build(@nestjs) fix README copy&move --- bundle/core/Readme.md | 11 +++++++---- bundle/microservices/Readme.md | 11 +++++++---- bundle/testing/Readme.md | 11 +++++++---- bundle/websockets/Readme.md | 11 +++++++---- gulpfile.js | 13 ++++++------- 5 files changed, 34 insertions(+), 23 deletions(-) diff --git a/bundle/core/Readme.md b/bundle/core/Readme.md index 783c5607b..60f513418 100644 --- a/bundle/core/Readme.md +++ b/bundle/core/Readme.md @@ -37,7 +37,8 @@ ## Getting started -To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* 要查看中文 [指南](readme_zh.md), 请访问 [docs.nestjs.cn](https://docs.nestjs.cn). :books: ## Support @@ -47,9 +48,13 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors +#### Silver Sponsors + +   + #### Sponsors -       +         ## Backers @@ -64,5 +69,3 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors ## License Nest is [MIT licensed](LICENSE). - -

中文说明

diff --git a/bundle/microservices/Readme.md b/bundle/microservices/Readme.md index 783c5607b..60f513418 100644 --- a/bundle/microservices/Readme.md +++ b/bundle/microservices/Readme.md @@ -37,7 +37,8 @@ ## Getting started -To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* 要查看中文 [指南](readme_zh.md), 请访问 [docs.nestjs.cn](https://docs.nestjs.cn). :books: ## Support @@ -47,9 +48,13 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors +#### Silver Sponsors + +   + #### Sponsors -       +         ## Backers @@ -64,5 +69,3 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors ## License Nest is [MIT licensed](LICENSE). - -

中文说明

diff --git a/bundle/testing/Readme.md b/bundle/testing/Readme.md index 783c5607b..60f513418 100644 --- a/bundle/testing/Readme.md +++ b/bundle/testing/Readme.md @@ -37,7 +37,8 @@ ## Getting started -To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* 要查看中文 [指南](readme_zh.md), 请访问 [docs.nestjs.cn](https://docs.nestjs.cn). :books: ## Support @@ -47,9 +48,13 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors +#### Silver Sponsors + +   + #### Sponsors -       +         ## Backers @@ -64,5 +69,3 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors ## License Nest is [MIT licensed](LICENSE). - -

中文说明

diff --git a/bundle/websockets/Readme.md b/bundle/websockets/Readme.md index 783c5607b..60f513418 100644 --- a/bundle/websockets/Readme.md +++ b/bundle/websockets/Readme.md @@ -37,7 +37,8 @@ ## Getting started -To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* To check out the [guide](https://docs.nestjs.com), visit [docs.nestjs.com](https://docs.nestjs.com). :books: +* 要查看中文 [指南](readme_zh.md), 请访问 [docs.nestjs.cn](https://docs.nestjs.cn). :books: ## Support @@ -47,9 +48,13 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors +#### Silver Sponsors + +   + #### Sponsors -       +         ## Backers @@ -64,5 +69,3 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors ## License Nest is [MIT licensed](LICENSE). - -

中文说明

diff --git a/gulpfile.js b/gulpfile.js index 1b7a0b051..67bc7f250 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -33,13 +33,12 @@ gulp.task('copy:ts', function() { gulp.task('copy-docs', function() { - return gulp.src('Readme.md').pipe( - gulp.dest('bundle/common'), - gulp.dest('bundle/core'), - gulp.dest('bundle/microservices'), - gulp.dest('bundle/websockets'), - gulp.dest('bundle/testing'), - ); + 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() {