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