@pipelab/plugin-steam 1.0.0-beta.15 → 1.0.0-beta.16
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.
- package/dist/index.cjs +6 -6
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -123694,7 +123694,7 @@ var require_auth = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, module
|
|
|
123694
123694
|
//#endregion
|
|
123695
123695
|
//#region ../../node_modules/make-fetch-happen/lib/options.js
|
|
123696
123696
|
var require_options$1 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, module) => {
|
|
123697
|
-
const dns$
|
|
123697
|
+
const dns$3 = require("dns");
|
|
123698
123698
|
const conditionalHeaders = [
|
|
123699
123699
|
"if-modified-since",
|
|
123700
123700
|
"if-none-match",
|
|
@@ -123719,7 +123719,7 @@ var require_options$1 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, m
|
|
|
123719
123719
|
};
|
|
123720
123720
|
options.dns = {
|
|
123721
123721
|
ttl: 300 * 1e3,
|
|
123722
|
-
lookup: dns$
|
|
123722
|
+
lookup: dns$3.lookup,
|
|
123723
123723
|
...options.dns
|
|
123724
123724
|
};
|
|
123725
123725
|
options.cache = options.cache || "default";
|
|
@@ -125136,9 +125136,9 @@ var require_key$3 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, modul
|
|
|
125136
125136
|
//#region ../../node_modules/@npmcli/agent/lib/dns.js
|
|
125137
125137
|
var require_dns = /* @__PURE__ */ require_chunk.__commonJSMin(((exports, module) => {
|
|
125138
125138
|
const { LRUCache } = require_index_min$5();
|
|
125139
|
-
const dns$
|
|
125139
|
+
const dns$2 = require("dns");
|
|
125140
125140
|
const cache = new LRUCache({ max: 50 });
|
|
125141
|
-
const getOptions = ({ family = 0, hints = dns$
|
|
125141
|
+
const getOptions = ({ family = 0, hints = dns$2.ADDRCONFIG, all = false, verbatim = void 0, ttl = 300 * 1e3, lookup = dns$2.lookup }) => ({
|
|
125142
125142
|
hints,
|
|
125143
125143
|
lookup: (hostname, ...args) => {
|
|
125144
125144
|
const callback = args.pop();
|
|
@@ -130177,7 +130177,7 @@ var require_dist$9 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports) => {
|
|
|
130177
130177
|
const socks_1 = require_build$1();
|
|
130178
130178
|
const agent_base_1 = require_dist$12();
|
|
130179
130179
|
const debug_1 = __importDefault(require_src$1());
|
|
130180
|
-
const dns = __importStar(require("dns"));
|
|
130180
|
+
const dns$1 = __importStar(require("dns"));
|
|
130181
130181
|
const net$1 = __importStar(require("net"));
|
|
130182
130182
|
const tls$1 = __importStar(require("tls"));
|
|
130183
130183
|
const url_1$1 = require("url");
|
|
@@ -130249,7 +130249,7 @@ var require_dist$9 = /* @__PURE__ */ require_chunk.__commonJSMin(((exports) => {
|
|
|
130249
130249
|
const { shouldLookup, proxy, timeout } = this;
|
|
130250
130250
|
if (!opts.host) throw new Error("No `host` defined!");
|
|
130251
130251
|
let { host } = opts;
|
|
130252
|
-
const { port, lookup: lookupFn = dns.lookup } = opts;
|
|
130252
|
+
const { port, lookup: lookupFn = dns$1.lookup } = opts;
|
|
130253
130253
|
if (shouldLookup) host = await new Promise((resolve, reject) => {
|
|
130254
130254
|
lookupFn(host, {}, (err, res) => {
|
|
130255
130255
|
if (err) reject(err);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipelab/plugin-steam",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.16",
|
|
4
4
|
"description": "Pipelab plugin for publishing games to Steam via SteamCMD",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@types/node": "^24.12.2",
|
|
35
35
|
"execa": "9.4.1",
|
|
36
|
-
"@pipelab/plugin-core": "1.0.0-beta.
|
|
36
|
+
"@pipelab/plugin-core": "1.0.0-beta.16"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"tsdown": "0.21.2",
|
|
40
40
|
"typescript": "5.9.3",
|
|
41
41
|
"vitest": "3.1.4",
|
|
42
|
-
"@pipelab/
|
|
43
|
-
"@pipelab/
|
|
42
|
+
"@pipelab/test-utils": "1.0.0-beta.16",
|
|
43
|
+
"@pipelab/tsconfig": "1.0.0-beta.11"
|
|
44
44
|
},
|
|
45
45
|
"pipelab": {
|
|
46
46
|
"name": "Steam",
|