Fix: Limit node version #3547 (#3563)

### What problem does this PR solve?

Fix: Limit node version #3547

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu 2024-11-21 18:14:22 +08:00 committed by GitHub
parent 3a3e23d8d9
commit 193b08a3ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -1,2 +1,2 @@
engine-strict=true
registry=https://registry.npmmirror.com/

3
web/package-lock.json generated
View File

@ -106,6 +106,9 @@
"ts-node": "^10.9.2",
"typescript": "^5.0.3",
"umi-plugin-icons": "^0.1.1"
},
"engines": {
"node": ">=18.20.4"
}
},
"node_modules/@aashutoshrathi/word-wrap": {

View File

@ -117,5 +117,8 @@
"ts-node": "^10.9.2",
"typescript": "^5.0.3",
"umi-plugin-icons": "^0.1.1"
},
"engines": {
"node": ">=18.20.4"
}
}