From e319711e809b9c0401a1adacfa702cf7259845d3 Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Mon, 2 Oct 2023 22:24:58 +0200 Subject: [PATCH] Fixed startup. --- src/bun.lockb | Bin 354430 -> 354430 bytes src/package.json | 2 +- src/static/js/pluginfw/plugins.js | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bun.lockb b/src/bun.lockb index cc445346f5f83f4da76e8a90a5970ce646244372..18e0fe611bcc3eb6359f16de09f69634690b5f30 100755 GIT binary patch delta 190 zcmV;v073u$&=vmB6_73jfOp%Jo;>do&o`ry*S&G6pAR4IS7NuIk(6;0WBCnj3F{;e{mHI$@T7j%44%S26(shmC{+w~d4Y-!K6;w{5ip&asz)x&$DHTW18fTW19$0i(TF9smFU delta 212 zcmex&LG<4R(FuAAX13z03g@3i7Rm(w?A5w|uCwFYjdj|pPnOTUr=6o&wP2&4m&N1> z7MwDAQA~^s2vCg7pS;)NHY4BUiT3J~EIFD_SZ+UI$*3#gVDZjm`>wl3g3RCRSz9KD zYDO?{Z2y+Jk-2c8y+;D8+5GYij8~0bEt@|n^X$8%(-AkN7OpzJ@L``?GNX1@%qN}j zcGDon?WRFY;YO2XTsYdNv@mU-(!zYhfYEq+?pEe=8>e6V$fD35ozAj7I-OOS5db&l BP~HFl diff --git a/src/package.json b/src/package.json index 9840f7992..2062cb7b8 100644 --- a/src/package.json +++ b/src/package.json @@ -67,7 +67,7 @@ "terser": "^5.20.0", "threads": "^1.7.0", "tinycon": "0.6.8", - "ueberdb2": "^4.2.13", + "ueberdb2": "^4.2.17", "underscore": "1.13.6", "unorm": "1.6.0", "wtfnode": "^0.9.1" diff --git a/src/static/js/pluginfw/plugins.js b/src/static/js/pluginfw/plugins.js index 099662285..e7ac500c3 100644 --- a/src/static/js/pluginfw/plugins.js +++ b/src/static/js/pluginfw/plugins.js @@ -111,7 +111,7 @@ exports.getPackages = async () => { // * The `--no-production` flag is required (or the `NODE_ENV` environment variable must be // unset or set to `development`) because otherwise `npm ls` will not mention any packages // that are not included in `package.json` (which is expected to not exist). - const cmd = ['bun', 'ls', '--long', '--json', '--depth=0', '--no-production']; + const cmd = ['npm', 'ls', '--long', '--json', '--depth=0', '--no-production']; const {dependencies = {}} = JSON.parse(await runCmd(cmd, {stdio: [null, 'string']})); await Promise.all(Object.entries(dependencies).map(async ([pkg, info]) => { if (!pkg.startsWith(exports.prefix)) {