@eggjs/aop-runtime 4.0.0-beta.36 → 4.0.2-beta.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.
@@ -20,9 +20,9 @@ function findCrossCuttedClazz(globalGraph, protoNode) {
20
20
  if (!CrosscutInfoUtil.isCrosscutAdvice(proto.clazz)) return;
21
21
  const crosscutInfoList = CrosscutInfoUtil.getCrosscutInfoList(proto.clazz);
22
22
  const result = [];
23
- crosscut: for (const crosscutInfo of crosscutInfoList) for (const protoNode$1 of globalGraph.protoGraph.nodes.values()) if (checkClazzMatchCrossCut(protoNode$1, crosscutInfo)) {
23
+ for (const protoNode$1 of globalGraph.protoGraph.nodes.values()) for (const crosscutInfo of crosscutInfoList) if (checkClazzMatchCrossCut(protoNode$1, crosscutInfo)) {
24
24
  result.push(protoNode$1);
25
- break crosscut;
25
+ break;
26
26
  }
27
27
  return result;
28
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eggjs/aop-runtime",
3
- "version": "4.0.0-beta.36",
3
+ "version": "4.0.2-beta.0",
4
4
  "description": "tegg aop runtime",
5
5
  "keywords": [
6
6
  "aop",
@@ -36,19 +36,19 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "koa-compose": "^4.1.0",
39
- "@eggjs/aop-decorator": "4.0.0-beta.36",
40
- "@eggjs/core-decorator": "4.0.0-beta.36",
41
- "@eggjs/tegg-runtime": "4.0.0-beta.36",
42
- "@eggjs/metadata": "4.0.0-beta.36",
43
- "@eggjs/tegg-common-util": "4.0.0-beta.36",
44
- "@eggjs/tegg-types": "4.0.0-beta.36"
39
+ "@eggjs/aop-decorator": "4.0.2-beta.0",
40
+ "@eggjs/tegg-common-util": "4.0.2-beta.0",
41
+ "@eggjs/core-decorator": "4.0.2-beta.0",
42
+ "@eggjs/tegg-runtime": "4.0.2-beta.0",
43
+ "@eggjs/metadata": "4.0.2-beta.0",
44
+ "@eggjs/tegg-types": "4.0.2-beta.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/koa-compose": "^3.2.8",
48
48
  "@types/node": "^24.10.2",
49
49
  "typescript": "^5.9.3",
50
50
  "@eggjs/module-test-util": "4.0.0-beta.29",
51
- "@eggjs/tegg-loader": "4.0.0-beta.36"
51
+ "@eggjs/tegg-loader": "4.0.2-beta.0"
52
52
  },
53
53
  "engines": {
54
54
  "node": ">=22.18.0"