Skip to content

Commit adb2319

Browse files
committed
feat(nest): update NestJS version to 7.0.0
1 parent 5cd5b7d commit adb2319

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/nest/src/schematics/init/init.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
nestJsVersion,
1212
nxVersion,
1313
reflectMetadataVersion,
14+
rxjsVersion,
1415
} from '../../utils/versions';
1516
import { setDefaultCollection } from '@nrwl/workspace/src/utils/rules/workspace';
1617

@@ -20,6 +21,7 @@ export const updateDependencies = addDepsToPackageJson(
2021
'@nestjs/core': nestJsVersion,
2122
'@nestjs/platform-express': nestJsVersion,
2223
'reflect-metadata': reflectMetadataVersion,
24+
rxjs: rxjsVersion,
2325
},
2426
{
2527
'@nestjs/schematics': nestJsSchematicsVersion,
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
export const nxVersion = '*';
22

3-
export const nestJsVersion = '^6.8.3';
4-
export const nestJsSchematicsVersion = '^6.7.0';
3+
export const nestJsVersion = '^7.0.0';
4+
export const nestJsSchematicsVersion = '^7.0.0';
5+
6+
export const rxjsVersion = '^6.5.4';
57

68
export const reflectMetadataVersion = '^0.1.13';

0 commit comments

Comments
 (0)