导出soa装饰器

This commit is contained in:
YHH
2025-08-11 09:01:01 +08:00
parent d539bb3dd9
commit 1361fd8a90
7 changed files with 745 additions and 450 deletions

View File

@@ -18,11 +18,13 @@
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "npm run build:core && npm run build:network",
"build": "npm run build:core && npm run build:math && npm run build:network",
"build:core": "cd packages/core && npm run build",
"build:math": "cd packages/math && npm run build",
"build:network": "cd packages/network && npm run build",
"build:npm": "npm run build:npm:core && npm run build:npm:network",
"build:npm": "npm run build:npm:core && npm run build:npm:math && npm run build:npm:network",
"build:npm:core": "cd packages/core && npm run build:npm",
"build:npm:math": "cd packages/math && npm run build:npm",
"build:npm:network": "cd packages/network && npm run build:npm",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",