mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
fixed missing glob
This commit is contained in:
parent
75aa5940b3
commit
6177c1929b
@ -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",
|
||||
|
||||
@ -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 => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user