Skip to content
Merged
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
107 changes: 93 additions & 14 deletions dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2024,7 +2024,7 @@ var WriteStreamSync = class extends WriteStream {
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/options.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/options.js
const argmap = new Map([
["C", "cwd"],
["f", "file"],
Expand Down Expand Up @@ -2069,7 +2069,7 @@ const dealias = (opt = {}) => {
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/make-command.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/make-command.js
const makeCommand = (syncFile, asyncFile, syncNoFile, asyncNoFile, validate) => {
return Object.assign((opt_ = [], entries, cb) => {
if (Array.isArray(opt_)) {
Expand Down Expand Up @@ -2463,7 +2463,7 @@ var ZstdDecompress = class extends Zstd {
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/large-numbers.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/large-numbers.js
const encode = (num, buf) => {
if (!Number.isSafeInteger(num)) throw Error("cannot encode number outside of javascript safe integer range");
else if (num < 0) encodeNegative(num, buf);
Expand Down Expand Up @@ -2529,7 +2529,7 @@ const onesComp = (byte) => (255 ^ byte) & 255;
const twosComp = (byte) => (255 ^ byte) + 1 & 255;

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/types.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/types.js
const isCode = (c) => name.has(c);
const name = new Map([
["0", "File"],
Expand Down Expand Up @@ -2557,7 +2557,7 @@ const name = new Map([
const code = new Map(Array.from(name).map((kv) => [kv[1], kv[0]]));

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/header.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/header.js
var Header = class {
cksumValid = false;
needPax = false;
Expand Down Expand Up @@ -2735,7 +2735,7 @@ const NULLS = new Array(156).join("\0");
const encString = (buf, off, size, str) => str === void 0 ? false : (buf.write(str + NULLS, off, size, "utf8"), str.length !== Buffer.byteLength(str) || str.length > size);

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/pax.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/pax.js
var Pax = class Pax {
atime;
mtime;
Expand Down Expand Up @@ -2832,12 +2832,12 @@ const parseKVLine = (set, line) => {
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/normalize-windows-path.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/normalize-windows-path.js
const platform$1 = process.env.TESTING_TAR_FAKE_PLATFORM || process.platform;
const normalizeWindowsPath = platform$1 !== "win32" ? (p) => p : (p) => p && p.replace(/\\/g, "/");

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/read-entry.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/read-entry.js
var ReadEntry = class extends Minipass {
extended;
globalExtended;
Expand Down Expand Up @@ -2941,7 +2941,7 @@ var ReadEntry = class extends Minipass {
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/warn-method.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/warn-method.js
const warnMethod = (self, code, message, data = {}) => {
if (self.file) data.file = self.file;
if (self.cwd) data.cwd = self.cwd;
Expand All @@ -2958,7 +2958,7 @@ const warnMethod = (self, code, message, data = {}) => {
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/parse.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/parse.js
const maxMetaEntrySize = 1024 * 1024;
const gzipHeader = Buffer.from([31, 139]);
const zstdHeader = Buffer.from([
Expand Down Expand Up @@ -3369,7 +3369,7 @@ while (this[PROCESSENTRY](this[QUEUE].shift()));
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/strip-trailing-slashes.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/strip-trailing-slashes.js
const stripTrailingSlashes = (str) => {
let i = str.length - 1;
let slashesStart = -1;
Expand All @@ -3381,7 +3381,7 @@ const stripTrailingSlashes = (str) => {
};

//#endregion
//#region node_modules/.pnpm/tar@7.5.3/node_modules/tar/dist/esm/list.js
//#region node_modules/.pnpm/tar@7.5.7/node_modules/tar/dist/esm/list.js
const onReadEntryFunction = (opt) => {
const onReadEntry = opt.onReadEntry;
opt.onReadEntry = onReadEntry ? (e) => {
Expand Down Expand Up @@ -3461,9 +3461,88 @@ const list = makeCommand(listFileSync, listFile, (opt) => new Parser(opt), (opt)
});

//#endregion
//#region node_modules/.pnpm/validate-npm-package-name@7.0.1/node_modules/validate-npm-package-name/lib/index.js
//#region node_modules/.pnpm/validate-npm-package-name@7.0.2/node_modules/validate-npm-package-name/lib/builtin-modules.json
var require_builtin_modules = /* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = [
"_http_agent",
"_http_client",
"_http_common",
"_http_incoming",
"_http_outgoing",
"_http_server",
"_stream_duplex",
"_stream_passthrough",
"_stream_readable",
"_stream_transform",
"_stream_wrap",
"_stream_writable",
"_tls_common",
"_tls_wrap",
"assert",
"assert/strict",
"async_hooks",
"buffer",
"child_process",
"cluster",
"console",
"constants",
"crypto",
"dgram",
"diagnostics_channel",
"dns",
"dns/promises",
"domain",
"events",
"fs",
"fs/promises",
"http",
"http2",
"https",
"inspector",
"inspector/promises",
"module",
"net",
"os",
"path",
"path/posix",
"path/win32",
"perf_hooks",
"process",
"punycode",
"querystring",
"readline",
"readline/promises",
"repl",
"stream",
"stream/consumers",
"stream/promises",
"stream/web",
"string_decoder",
"sys",
"timers",
"timers/promises",
"tls",
"trace_events",
"tty",
"url",
"util",
"util/types",
"v8",
"vm",
"wasi",
"worker_threads",
"zlib",
"node:sea",
"node:sqlite",
"node:test",
"node:test/reporters"
];
}));

//#endregion
//#region node_modules/.pnpm/validate-npm-package-name@7.0.2/node_modules/validate-npm-package-name/lib/index.js
var require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {
const { builtinModules: builtins } = __require("module");
const builtins = require_builtin_modules();
var scopedPackagePattern = /* @__PURE__ */ new RegExp("^(?:@([^/]+?)[/])?([^/]+?)$");
var exclusionList = ["node_modules", "favicon.ico"];
function validate(name) {
Expand Down
2 changes: 1 addition & 1 deletion dist/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"@types/semver": "^7.7.1",
"command-line-args": "6.0.1",
"semver": "7.7.3",
"tar": "7.5.3",
"tar": "7.5.7",
"validate-npm-package-name": "^7.0.1"
},
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
Expand Down
19 changes: 9 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.