@mikro-orm/core 7.0.0-dev.23 → 7.0.0-dev.24

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.
@@ -378,7 +378,7 @@ export class ReferenceOptionsBuilder extends PropertyOptionsBuilder {
378
378
  * @internal
379
379
  * re-declare to override type inference
380
380
  */
381
- /* istanbul ignore next */
381
+ /* v8 ignore next 3 */
382
382
  ref(ref = true) {
383
383
  return new ReferenceOptionsBuilder({ ...this['~options'], ref });
384
384
  }
@@ -386,7 +386,7 @@ export class ReferenceOptionsBuilder extends PropertyOptionsBuilder {
386
386
  * @internal
387
387
  * re-declare to override type inference
388
388
  */
389
- /* istanbul ignore next */
389
+ /* v8 ignore next 3 */
390
390
  primary(primary = true) {
391
391
  return new ReferenceOptionsBuilder({ ...this['~options'], primary });
392
392
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
3
  "type": "module",
4
- "version": "7.0.0-dev.23",
4
+ "version": "7.0.0-dev.24",
5
5
  "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.",
6
6
  "exports": {
7
7
  "./package.json": "./package.json",
@@ -54,7 +54,7 @@
54
54
  "dataloader": "2.2.3",
55
55
  "dotenv": "17.2.1",
56
56
  "esprima": "4.0.1",
57
- "mikro-orm": "7.0.0-dev.23",
57
+ "mikro-orm": "7.0.0-dev.24",
58
58
  "reflect-metadata": "0.2.2",
59
59
  "tinyglobby": "0.2.13"
60
60
  }
@@ -18,7 +18,7 @@ export class RawQueryFragment {
18
18
  }
19
19
  as(alias) {
20
20
  // TODO: to be removed in v7
21
- /* istanbul ignore next */
21
+ /* v8 ignore next 3 */
22
22
  if (alias.startsWith('`') || alias.startsWith('"')) {
23
23
  return new RawQueryFragment(`${this.sql} as ${alias}`, this.params);
24
24
  }