@mikro-orm/decorators 7.0.4-dev.9 → 7.0.5-dev.0
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 +3 -3
- package/utils.js +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/decorators",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.5-dev.0",
|
|
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
|
"keywords": [
|
|
6
6
|
"data-mapper",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"copy": "node ../../scripts/copy.mjs"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@mikro-orm/core": "^7.0.
|
|
52
|
+
"@mikro-orm/core": "^7.0.4"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@mikro-orm/core": "7.0.
|
|
55
|
+
"@mikro-orm/core": "7.0.5-dev.0",
|
|
56
56
|
"reflect-metadata": "^0.1.0 || ^0.2.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependenciesMeta": {
|
package/utils.js
CHANGED
|
@@ -102,8 +102,9 @@ export function lookupPathFromDecorator(name, stack) {
|
|
|
102
102
|
line++;
|
|
103
103
|
}
|
|
104
104
|
// Skip decorator runtime helpers (tslib, @oxc-project/runtime, etc.)
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
// The @oxc-project/runtime check covers both node_modules installs and Rolldown-bundled
|
|
106
|
+
// virtual modules (e.g. \0@oxc-project+runtime@0.120.0/helpers/decorate.js).
|
|
107
|
+
while (line < stack.length && /node_modules\/tslib\/|@oxc-project[/+]runtime/.test(stack[line].replace(/\\/g, '/'))) {
|
|
107
108
|
line++;
|
|
108
109
|
}
|
|
109
110
|
try {
|