fixed missing glob

This commit is contained in:
Umed Khudoiberdiev 2016-05-17 22:38:08 +05:00
parent 75aa5940b3
commit 6177c1929b
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{
"name": "typeorm",
"private": true,
"version": "0.0.2-alpha.19",
"version": "0.0.2-alpha.20",
"description": "Data-mapper ORM for Typescript",
"license": "Apache-2.0",
"readmeFilename": "README.md",
@ -43,6 +43,7 @@
},
"dependencies": {
"fs": "^0.0.2",
"glob": "^7.0.3",
"lodash": "^4.11.1",
"moment": "^2.13.0",
"mysql": "^2.10.2",

View File

@ -709,7 +709,7 @@ export class QueryBuilder<Entity> {
return sql;
}
protected extractJoinMappings(): JoinMapping[] {
private extractJoinMappings(): JoinMapping[] {
return this.joins
.filter(join => !!join.mapToProperty)
.map(join => {