Skip to content

Commit 88b1fe9

Browse files
authored
chore(httpie): move from @myunisoft/httpie to @openally/httpie (#577)
1 parent 700fc4a commit 88b1fe9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@
6767
},
6868
"homepage": "https://github.com/NodeSecure/cli#readme",
6969
"devDependencies": {
70-
"@myunisoft/httpie": "^5.0.0",
7170
"@nodesecure/size-satisfies": "^1.1.0",
7271
"@nodesecure/vis-network": "^1.4.0",
7372
"@openally/config.eslint": "^2.1.0",
7473
"@openally/config.typescript": "^1.0.3",
74+
"@openally/httpie": "^1.0.0",
7575
"@types/node": "^24.0.3",
7676
"c8": "^10.1.2",
7777
"cross-env": "^7.0.3",

workspaces/server/src/endpoints/bundle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Import Third-party Dependencies
2-
import * as httpie from "@myunisoft/httpie";
2+
import * as httpie from "@openally/httpie";
33
import send from "@polka/send-type";
44
import type { Request, Response } from "express-serve-static-core";
55

workspaces/server/test/httpServer.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import assert from "node:assert";
88
import stream from "node:stream";
99

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

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

0 commit comments

Comments
 (0)