fix: 修复版本号和TS编译错误,npm install + tsc + vite build全部通过
Some checks failed
CI / lint-and-typecheck (push) Failing after 1m33s
CI / test (push) Has been skipped
CI / build (push) Has been skipped

This commit is contained in:
2026-04-11 19:06:48 +08:00
parent 20d510d857
commit 49f5c6d5aa
4 changed files with 5356 additions and 4 deletions

5352
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -13,8 +13,8 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@arco-design/web-react": "^2.67.0",
"@larksuiteoapi/node-sdk": "^0.6.0",
"@arco-design/web-react": "^2.66.0",
"@larksuiteoapi/node-sdk": "^1.60.0",
"hono": "^4.7.0",
"react": "^18.3.0",
"react-dom": "^18.3.0"

View File

@@ -7,7 +7,7 @@ import { generateCharter, generateStakeholderRegister, ProjectData } from './cha
import { HRManager } from './hr-manager';
import { ExperienceManager } from './experience-manager';
import { notifyProjectCreated, notifyMilestoneReminder, notifyRiskAlert, notifyDecisionRequired } from '../server/feishu';
import { createDecision, DECISION_TEMPLATES } from './decision-cards';
import { createDecision, DECISION_TEMPLATES, getPendingDecisions } from './decision-cards';
import { getChecklistByPhase, getPhaseCompletion, ChecklistItem } from './checklists';
export interface FlowResult {

View File

@@ -277,7 +277,7 @@ const WizardPage: React.FC = () => {
<Text>{project.milestones.length}</Text>
</div>
{(!project.name || !project.goal) && (
<Message.warning> </Message.warning>
<div style={{ color: '#ff7d00', fontSize: 14, marginTop: 8 }}> </div>
)}
</Space>
</Card>