Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/nestjs/schematics
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Sep 19, 2019
2 parents 82c15a1 + a3a8e57 commit a236d73
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
},
"homepage": "https://github.com/nestjs/schematics#readme",
"dependencies": {
"@angular-devkit/core": "8.3.4",
"@angular-devkit/schematics": "8.3.4",
"@angular-devkit/core": "8.3.5",
"@angular-devkit/schematics": "8.3.5",
"fs-extra": "^8.1.0",
"ts-morph": "^4.0.0",
"typescript": "3.4.5"
Expand Down
5 changes: 3 additions & 2 deletions src/lib/application/files/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
"js",
"json"
],
"rootDir": "src",
"rootDir": ".",
"roots":["<rootDir>/src/", "<rootDir>/libs/", "<rootDir>/apps/"],
"testRegex": ".spec.js$",
"coverageDirectory": "../coverage"
"coverageDirectory": "./coverage"
}
}
5 changes: 3 additions & 2 deletions src/lib/application/files/ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@
},
"jest": {
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": "src",
"rootDir": ".",
"roots":["<rootDir>/src/", "<rootDir>/libs/", "<rootDir>/apps/"],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}

0 comments on commit a236d73

Please sign in to comment.