@loopback/metadata 7.0.14 → 8.0.1
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/README.md +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -134,7 +134,7 @@ const arrayOfSpecs = MetadataInspector.getMethodMetadata<object>(
|
|
|
134
134
|
|
|
135
135
|
Typescript
|
|
136
136
|
[applies decorators in reverse order](https://www.typescriptlang.org/docs/handbook/decorators.html)
|
|
137
|
-
per class, from the parent down. The metadata array
|
|
137
|
+
per class, from the parent down. The metadata array returned by `getOwnMetadata`
|
|
138
138
|
will be in this order:
|
|
139
139
|
|
|
140
140
|
```ts
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/metadata",
|
|
3
3
|
"description": "Utilities to help developers implement TypeScript decorators, define/merge metadata, and inspect metadata",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "8.0.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"LoopBack",
|
|
7
7
|
"Decorators",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"directory": "packages/metadata"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": "
|
|
21
|
+
"node": "20 || 22 || 24"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"acceptance": "lb-mocha \"dist/__tests__/acceptance/**/*.js\"",
|
|
@@ -39,18 +39,18 @@
|
|
|
39
39
|
"!*/__tests__"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"debug": "^4.4.
|
|
42
|
+
"debug": "^4.4.1",
|
|
43
43
|
"lodash": "^4.17.21",
|
|
44
44
|
"reflect-metadata": "^0.2.1",
|
|
45
45
|
"tslib": "^2.8.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@loopback/build": "^
|
|
49
|
-
"@loopback/eslint-config": "^
|
|
50
|
-
"@loopback/testlab": "^
|
|
48
|
+
"@loopback/build": "^12.0.1",
|
|
49
|
+
"@loopback/eslint-config": "^16.0.0",
|
|
50
|
+
"@loopback/testlab": "^8.0.1",
|
|
51
51
|
"@types/debug": "^4.1.12",
|
|
52
|
-
"@types/lodash": "^4.17.
|
|
52
|
+
"@types/lodash": "^4.17.17",
|
|
53
53
|
"@types/node": "^16.18.126"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "739a529c28256ab39fcc173ca0195e700758ef11"
|
|
56
56
|
}
|