Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Feb 10, 2020
2 parents ce337c8 + 3eb841f commit d6fada1
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 31 deletions.
72 changes: 46 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-angular": "8.3.4",
"@nestjs/common": "6.11.5",
"@nestjs/core": "6.11.5",
"@nestjs/platform-express": "6.11.5",
"@nestjs/platform-fastify": "6.11.5",
"@types/jest": "25.1.1",
"@nestjs/common": "6.11.6",
"@nestjs/core": "6.11.6",
"@nestjs/platform-express": "6.11.6",
"@nestjs/platform-fastify": "6.11.6",
"@types/jest": "25.1.2",
"@types/lodash": "4.14.149",
"@types/node": "11.15.0",
"express": "4.17.1",
Expand Down
1 change: 1 addition & 0 deletions test/plugin/controller-class-visitor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe('Controller methods', () => {
const options: ts.CompilerOptions = {
module: ts.ModuleKind.CommonJS,
target: ts.ScriptTarget.ESNext,
newLine: ts.NewLineKind.LineFeed,
noEmitHelpers: true
};
const filename = 'app.controller.ts';
Expand Down
4 changes: 4 additions & 0 deletions test/plugin/model-class-visitor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ describe('API model properties', () => {
const options: ts.CompilerOptions = {
module: ts.ModuleKind.ESNext,
target: ts.ScriptTarget.ESNext,
newLine: ts.NewLineKind.LineFeed,
noEmitHelpers: true
};
const filename = 'create-cat.dto.ts';
Expand All @@ -41,6 +42,7 @@ describe('API model properties', () => {
const options: ts.CompilerOptions = {
module: ts.ModuleKind.ESNext,
target: ts.ScriptTarget.ESNext,
newLine: ts.NewLineKind.LineFeed,
noEmitHelpers: true
};
const filename = 'create-cat.dto.ts';
Expand All @@ -60,6 +62,7 @@ describe('API model properties', () => {
const options: ts.CompilerOptions = {
module: ts.ModuleKind.ESNext,
target: ts.ScriptTarget.ESNext,
newLine: ts.NewLineKind.LineFeed,
noEmitHelpers: true
};
const filename = 'create-cat-alt2.dto.ts';
Expand All @@ -79,6 +82,7 @@ describe('API model properties', () => {
const options: ts.CompilerOptions = {
module: ts.ModuleKind.CommonJS,
target: ts.ScriptTarget.ES5,
newLine: ts.NewLineKind.LineFeed,
noEmitHelpers: true
};
const filename = 'es5-class.dto.ts';
Expand Down

0 comments on commit d6fada1

Please sign in to comment.