@mikro-orm/core 6.5.5-dev.4 → 6.5.5-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/core",
|
|
3
|
-
"version": "6.5.5-dev.
|
|
3
|
+
"version": "6.5.5-dev.6",
|
|
4
4
|
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"esprima": "4.0.1",
|
|
65
65
|
"fs-extra": "11.3.2",
|
|
66
66
|
"globby": "11.1.0",
|
|
67
|
-
"mikro-orm": "6.5.5-dev.
|
|
67
|
+
"mikro-orm": "6.5.5-dev.6",
|
|
68
68
|
"reflect-metadata": "0.2.2"
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -565,7 +565,9 @@ class EntityComparator {
|
|
|
565
565
|
return comparator;
|
|
566
566
|
}
|
|
567
567
|
getGenericComparator(prop, cond) {
|
|
568
|
-
return ` if (current${prop}
|
|
568
|
+
return ` if (current${prop} === null && last${prop} === undefined) {\n` +
|
|
569
|
+
` diff${prop} = current${prop};\n` +
|
|
570
|
+
` } else if (current${prop} == null && last${prop} == null) {\n\n` +
|
|
569
571
|
` } else if ((current${prop} != null && last${prop} == null) || (current${prop} == null && last${prop} != null)) {\n` +
|
|
570
572
|
` diff${prop} = current${prop};\n` +
|
|
571
573
|
` } else if (${cond}) {\n` +
|