Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@
},
"homepage": "https://github.com/NodeSecure/cli#readme",
"devDependencies": {
"@myunisoft/httpie": "^5.0.0",
"@nodesecure/size-satisfies": "^1.1.0",
"@nodesecure/vis-network": "^1.4.0",
"@openally/config.eslint": "^2.1.0",
"@openally/config.typescript": "^1.0.3",
"@openally/httpie": "^1.0.0",
"@types/node": "^24.0.3",
"c8": "^10.1.2",
"cross-env": "^7.0.3",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/server/src/endpoints/bundle.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Import Third-party Dependencies
import * as httpie from "@myunisoft/httpie";
import * as httpie from "@openally/httpie";
import send from "@polka/send-type";
import type { Request, Response } from "express-serve-static-core";

Expand Down
4 changes: 2 additions & 2 deletions workspaces/server/test/httpServer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import assert from "node:assert";
import stream from "node:stream";

// Import Third-party Dependencies
import { get, post, MockAgent, getGlobalDispatcher, setGlobalDispatcher } from "@myunisoft/httpie";
import { get, post, MockAgent, getGlobalDispatcher, setGlobalDispatcher } from "@openally/httpie";
import { CACHE_PATH } from "@nodesecure/cache";
import * as i18n from "@nodesecure/i18n";
import * as flags from "@nodesecure/flags";
Expand Down Expand Up @@ -215,7 +215,7 @@ describe("httpServer", { concurrency: 1 }, () => {

test("PUT '/config' should update the config", async() => {
const { data: actualConfig } = await get(new URL("/config", kHttpURL));
// FIXME: use @mynusift/httpie instead of fetch. Atm it throws with put().
// FIXME: use @openally/httpie instead of fetch. Atm it throws with put().
// https://github.com/nodejs/undici/issues/583
const { status } = await fetch(new URL("/config", kHttpURL), {
method: "PUT",
Expand Down