返回提交历史
Modified
package-lock.json
+4
-4
Modified
package.json
+1
-1
Modified
src/services/itemDataService.ts
+2
-1
XFEstudio/XFESpaceNinjaServer
chore: update PE+ (#2902)
Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2902 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
ff234c98
代码差异
3 个文件
+7
-6
@@ -18,7 +18,7 @@
18
18
"morgan": "^1.10.0",
19
19
"ncp": "^2.0.0",
20
20
"undici": "^7.10.0",
21
"warframe-public-export-plus": "^0.5.90",
21
"warframe-public-export-plus": "^0.5.91",
22
22
"warframe-riven-info": "^0.1.2",
23
23
"winston": "^3.17.0",
24
24
"winston-daily-rotate-file": "^5.0.0",
@@ -5534,9 +5534,9 @@
5534
5534
}
5535
5535
},
5536
5536
"node_modules/warframe-public-export-plus": {
5537
"version": "0.5.90",
5538
"resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.5.90.tgz",
5539
"integrity": "sha512-PzYFJ+qOZawPOVx9+hGlOosGdqSJMSRL6c1z3CCXMiY5SEHUs7p9JIMjkqnvg1g7vflVWnyG6E5/2gYkQs0d7w=="
5537
"version": "0.5.91",
5538
"resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.5.91.tgz",
5539
"integrity": "sha512-xp8rq/dvFC6+urb6vVFRtAmm1v0iE/ZALI3uVGBpblsVB/PWmGxjBBp8l00dCZs67JsqEKcrCcogKwtKTwDc1w=="
5540
5540
},
5541
5541
"node_modules/warframe-riven-info": {
5542
5542
"version": "0.1.2",
@@ -36,7 +36,7 @@
36
36
"morgan": "^1.10.0",
37
37
"ncp": "^2.0.0",
38
38
"undici": "^7.10.0",
39
"warframe-public-export-plus": "^0.5.90",
39
"warframe-public-export-plus": "^0.5.91",
40
40
"warframe-riven-info": "^0.1.2",
41
41
"winston": "^3.17.0",
42
42
"winston-daily-rotate-file": "^5.0.0",
@@ -81,7 +81,8 @@ export const getRecipe = (uniqueName: string): IRecipe | undefined => {
81
81
ItemCount: 600
82
82
}
83
83
],
84
excludeFromMarket: true
84
excludeFromMarket: true,
85
tradable: false
85
86
};
86
87
}
87
88