XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

chore: define node version constraints (#2703)

`>=20.18.1` is required for `npm i && npm run build && npm run start` to succeed. `npm run raw` would require `>=22.7.0`. Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2703 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

c9cc1fa0
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

2 个文件 +4 -1
Modified .github/workflows/build.yml +1 -1
@@ -12,7 +12,7 @@ jobs:
12 12 - name: Setup Node.js environment
13 13 uses: actions/setup-node@v4.0.2
14 14 with:
15 node-version: ">=20.6.0"
15 node-version: ">=20.18.1"
16 16 - run: npm ci
17 17 - run: cp config-vanilla.json config.json
18 18 - run: npm run verify
Modified package.json +3 -0
@@ -57,5 +57,8 @@
57 57 "eslint-plugin-prettier": "^5.2.5",
58 58 "prettier": "^3.5.3",
59 59 "tree-kill": "^1.2.2"
60 },
61 "engines": {
62 "node": ">=20.18.1"
60 63 }
61 64 }