flumm-fetch-cookies -> flumm-fetch

This commit is contained in:
Flummi 2022-03-31 19:53:44 +02:00
parent f328ce14de
commit 4369aaf1dd
5 changed files with 11 additions and 11 deletions

14
package-lock.json generated
View File

@ -10,7 +10,7 @@
"license": "MIT",
"dependencies": {
"cuffeo": "^1.0.7-3",
"flumm-fetch-cookies": "^1.4.0",
"flumm-fetch": "^1.0.1",
"flummpress": "^2.0.4",
"postgres": "^3.0.1"
}
@ -45,9 +45,9 @@
"integrity": "sha512-AuEf/VnfC9hWqw+/0aH+Y+c8UgZ6CX/wVN8RR8V9btvYhIzLTJzVlyC0oTg5yrqLMUGaL9y8YRBjg2hKbFm94A=="
},
"node_modules/postgres": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/postgres/-/postgres-3.0.1.tgz",
"integrity": "sha512-X1D5LpY7vwL1nxwKr6uvLFR/ErYDGoxsk8NPQXKL6awsFyS5/MGybUv0FXK8l7sAUFE1uh/wf1xJ0iWj+fyrWw==",
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/postgres/-/postgres-3.0.2.tgz",
"integrity": "sha512-sHkEGAnPVqRclh5oIr9S9e/VNX0/MUb2PgS9bl/0wnI8WrHhzMmxqq/fAkMZKUUrC3Lfa4qaNh1dyDPH4Q8V0w==",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/porsager"
@ -82,9 +82,9 @@
"integrity": "sha512-AuEf/VnfC9hWqw+/0aH+Y+c8UgZ6CX/wVN8RR8V9btvYhIzLTJzVlyC0oTg5yrqLMUGaL9y8YRBjg2hKbFm94A=="
},
"postgres": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/postgres/-/postgres-3.0.1.tgz",
"integrity": "sha512-X1D5LpY7vwL1nxwKr6uvLFR/ErYDGoxsk8NPQXKL6awsFyS5/MGybUv0FXK8l7sAUFE1uh/wf1xJ0iWj+fyrWw=="
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/postgres/-/postgres-3.0.2.tgz",
"integrity": "sha512-sHkEGAnPVqRclh5oIr9S9e/VNX0/MUb2PgS9bl/0wnI8WrHhzMmxqq/fAkMZKUUrC3Lfa4qaNh1dyDPH4Q8V0w=="
}
}
}

View File

@ -15,7 +15,7 @@
"license": "MIT",
"dependencies": {
"cuffeo": "^1.0.7-3",
"flumm-fetch-cookies": "^1.4.0",
"flumm-fetch": "^1.0.1",
"flummpress": "^2.0.4",
"postgres": "^3.0.1"
}

View File

@ -1,5 +1,5 @@
import { getLevel } from "../admin.mjs";
import fetch from "flumm-fetch-cookies";
import fetch from "flumm-fetch";
import vm from "vm";
let maxoutput = 750;

View File

@ -1,4 +1,4 @@
import fetch from "flumm-fetch-cookies";
import fetch from "flumm-fetch";
import { promises as fs } from "fs";
import { exec } from "child_process";
import cfg from "../config.mjs";

View File

@ -2,7 +2,7 @@ import cfg from "../config.mjs";
import db from "../sql.mjs";
import lib from "../lib.mjs";
import { getLevel } from "../admin.mjs";
import fetch from "flumm-fetch-cookies";
import fetch from "flumm-fetch";
import fs from "fs";
import { exec as _exec } from "child_process";