Skip to content
Closed
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
10 changes: 5 additions & 5 deletions packages/comms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,12 @@
"@hpcc-js/util": "^3.3.2",
"@xmldom/xmldom": "0.9.8",
"abort-controller": "3.0.0",
"d3-array": "^1",
"d3-format": "^1",
"d3-time-format": "^2",
"node-fetch": "3.3.2",
"safe-buffer": "5.2.1",
"tmp": "0.2.3",
"undici": "6.21.2"
},
"devDependencies": {
Expand All @@ -86,12 +91,7 @@
"@types/d3-time-format": "2.3.4",
"@types/node": "^18",
"@types/xmldom": "0.1.34",
"d3-array": "^1",
"d3-format": "^1",
"d3-time-format": "^2",
"data-uri-to-buffer": "6.0.2",
"safe-buffer": "5.2.1",
"tmp": "0.2.3",
"soap": "1.1.10",
"typescript-formatter": "^7.2.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/comms/src/clienttools/eclMeta.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as fs from "fs";
import * as path from "path";
import * as fs from "node:fs";
import * as path from "node:path";

import { Dictionary, DictionaryNoCase, find, SAXStackParser, scopedLogger, XMLNode } from "@hpcc-js/util";
import { ClientTools, locateClientTools } from "./eclcc.ts";
Expand Down
8 changes: 4 additions & 4 deletions packages/comms/src/clienttools/eclcc.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as cp from "child_process";
import * as fs from "fs";
import * as os from "os";
import * as path from "path";
import * as cp from "node:child_process";
import * as fs from "node:fs";
import * as os from "node:os";
import * as path from "node:path";
import * as tmp from "tmp";

import { exists, scopedLogger, xml2json, XMLNode } from "@hpcc-js/util";
Expand Down
2 changes: 1 addition & 1 deletion packages/comms/src/index.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ root.DOMParser = DOMParser;
// fetch polyfill ---
import fetch, { Headers, Request, Response, } from "node-fetch";

import * as https from "https";
import * as https from "node:https";
import { Agent, setGlobalDispatcher } from "undici";

if (typeof root.fetch === "undefined") {
Expand Down
6 changes: 3 additions & 3 deletions packages/markdown-it-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@
"@types/markdown-it": "14.1.2"
},
"peerDependencies": {
"markdown-it": "14.1.0"
"apache-arrow": "19.0.1",
"markdown-it": "14.1.0",
"shiki": "2.5.0"
},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "^1.4.2",
"apache-arrow": "19.0.1",
"d3-dsv": "3.0.1",
"d3-fetch": "3.0.1",
"dotenv": "16.4.7",
"shiki": "2.5.0",
"tsx": "4.19.3"
},
"repository": {
Expand Down
Loading
Loading