mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
changes from bot review
This commit is contained in:
2
.github/workflows/typecheck.yml
vendored
2
.github/workflows/typecheck.yml
vendored
@@ -37,5 +37,5 @@ jobs:
|
||||
|
||||
- name: Lockfile lint
|
||||
run: |
|
||||
[ -z "$(jq -r '.packages | to_entries[] | select((.key | contains("node_modules")) and (.value | has("resolved") and has("integrity") | not)) | .key' < package-lock.json)" ]
|
||||
[ -z "$(jq -r '.packages | to_entries[] | select((.key | contains("node_modules")) and (.value.resolved | contains("git+ssh") | not) and (.value | has("resolved") and has("integrity") | not)) | .key' < package-lock.json)" ]
|
||||
working-directory: frontend
|
||||
|
||||
1
frontend/package-lock.json
generated
1
frontend/package-lock.json
generated
@@ -7838,7 +7838,6 @@
|
||||
"node_modules/rom-patcher": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "git+ssh://git@github.com/marcrobledo/RomPatcher.js.git#91e522e247f709e894761157ccba3189004d0859",
|
||||
"integrity": "",
|
||||
"dependencies": {
|
||||
"chalk": "4.1.2",
|
||||
"commander": "^11.0.0"
|
||||
|
||||
@@ -116,19 +116,21 @@ async function ensureCoreLoaded() {
|
||||
window.VCDIFF =
|
||||
null;
|
||||
|
||||
import("rom-patcher/rom-patcher-js/modules/BinFile.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/HashCalculator.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.aps_gba.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.aps_n64.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.bdf.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.bps.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.ips.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.pmsr.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.ppf.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.rup.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.ups.js");
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.vcdiff.js");
|
||||
import("rom-patcher/rom-patcher-js/RomPatcher.js");
|
||||
await Promise.all([
|
||||
import("rom-patcher/rom-patcher-js/modules/BinFile.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/HashCalculator.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.aps_gba.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.aps_n64.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.bdf.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.bps.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.ips.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.pmsr.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.ppf.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.rup.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.ups.js"),
|
||||
import("rom-patcher/rom-patcher-js/modules/RomPatcher.format.vcdiff.js"),
|
||||
import("rom-patcher/rom-patcher-js/RomPatcher.js"),
|
||||
]);
|
||||
|
||||
coreLoaded.value = true;
|
||||
} catch (e: any) {
|
||||
|
||||
Reference in New Issue
Block a user