@pipelab/plugin-system 1.0.0-beta.15 → 1.0.0-beta.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.cjs +6 -6
  2. package/package.json +3 -3
package/dist/index.cjs CHANGED
@@ -117496,7 +117496,7 @@ var require_auth = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, module
117496
117496
  //#endregion
117497
117497
  //#region ../../node_modules/make-fetch-happen/lib/options.js
117498
117498
  var require_options$1 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, module) => {
117499
- const dns$2 = require("dns");
117499
+ const dns$3 = require("dns");
117500
117500
  const conditionalHeaders = [
117501
117501
  "if-modified-since",
117502
117502
  "if-none-match",
@@ -117521,7 +117521,7 @@ var require_options$1 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, m
117521
117521
  };
117522
117522
  options.dns = {
117523
117523
  ttl: 300 * 1e3,
117524
- lookup: dns$2.lookup,
117524
+ lookup: dns$3.lookup,
117525
117525
  ...options.dns
117526
117526
  };
117527
117527
  options.cache = options.cache || "default";
@@ -118938,9 +118938,9 @@ var require_key$3 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, modul
118938
118938
  //#region ../../node_modules/@npmcli/agent/lib/dns.js
118939
118939
  var require_dns = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, module) => {
118940
118940
  const { LRUCache } = require_index_min$5();
118941
- const dns$1 = require("dns");
118941
+ const dns$2 = require("dns");
118942
118942
  const cache = new LRUCache({ max: 50 });
118943
- const getOptions = ({ family = 0, hints = dns$1.ADDRCONFIG, all = false, verbatim = void 0, ttl = 300 * 1e3, lookup = dns$1.lookup }) => ({
118943
+ const getOptions = ({ family = 0, hints = dns$2.ADDRCONFIG, all = false, verbatim = void 0, ttl = 300 * 1e3, lookup = dns$2.lookup }) => ({
118944
118944
  hints,
118945
118945
  lookup: (hostname, ...args) => {
118946
118946
  const callback = args.pop();
@@ -123979,7 +123979,7 @@ var require_dist$9 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports) => {
123979
123979
  const socks_1 = require_build$1();
123980
123980
  const agent_base_1 = require_dist$12();
123981
123981
  const debug_1 = __importDefault(require_src$1());
123982
- const dns = __importStar(require("dns"));
123982
+ const dns$1 = __importStar(require("dns"));
123983
123983
  const net$1 = __importStar(require("net"));
123984
123984
  const tls$1 = __importStar(require("tls"));
123985
123985
  const url_1$1 = require("url");
@@ -124051,7 +124051,7 @@ var require_dist$9 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports) => {
124051
124051
  const { shouldLookup, proxy, timeout } = this;
124052
124052
  if (!opts.host) throw new Error("No `host` defined!");
124053
124053
  let { host } = opts;
124054
- const { port, lookup: lookupFn = dns.lookup } = opts;
124054
+ const { port, lookup: lookupFn = dns$1.lookup } = opts;
124055
124055
  if (shouldLookup) host = await new Promise((resolve, reject) => {
124056
124056
  lookupFn(host, {}, (err, res) => {
124057
124057
  if (err) reject(err);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipelab/plugin-system",
3
- "version": "1.0.0-beta.15",
3
+ "version": "1.0.0-beta.17",
4
4
  "description": "Pipelab plugin for running shell commands and system operations",
5
5
  "keywords": [
6
6
  "automation",
@@ -32,12 +32,12 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@types/node": "^24.12.2",
35
- "@pipelab/plugin-core": "1.0.0-beta.15"
35
+ "@pipelab/plugin-core": "1.0.0-beta.17"
36
36
  },
37
37
  "devDependencies": {
38
38
  "tsdown": "0.21.2",
39
39
  "typescript": "5.9.3",
40
- "@pipelab/tsconfig": "1.0.0-beta.10"
40
+ "@pipelab/tsconfig": "1.0.0-beta.12"
41
41
  },
42
42
  "pipelab": {
43
43
  "name": "System",