@mikro-orm/core 6.6.5-dev.3 → 6.6.5-dev.4

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/utils/Utils.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
- "version": "6.6.5-dev.3",
3
+ "version": "6.6.5-dev.4",
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.3",
66
66
  "globby": "11.1.0",
67
- "mikro-orm": "6.6.5-dev.3",
67
+ "mikro-orm": "6.6.5-dev.4",
68
68
  "reflect-metadata": "0.2.2"
69
69
  }
70
70
  }
package/utils/Utils.js CHANGED
@@ -658,7 +658,7 @@ class Utils {
658
658
  */
659
659
  static detectTsNode() {
660
660
  /* istanbul ignore next */
661
- return process.argv[0].endsWith('ts-node') // running via ts-node directly
661
+ return process.argv[0]?.endsWith('ts-node') // running via ts-node directly
662
662
  // @ts-ignore
663
663
  || !!process[Symbol.for('ts-node.register.instance')] // check if internal ts-node symbol exists
664
664
  || !!process.env.TS_JEST // check if ts-jest is used (works only with v27.0.4+)