vlt 0.0.0-0.1727464479666 → 0.0.0-0.1727472455017
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/cache-unzip/unzip.js +7 -4
- package/cache-unzip/unzip.js.map +1 -1
- package/commands/config.js +5 -2
- package/commands/config.js.map +1 -1
- package/commands/exec.js +5 -2
- package/commands/exec.js.map +1 -1
- package/commands/help.js +5 -2
- package/commands/help.js.map +1 -1
- package/commands/install-exec.js +5 -2
- package/commands/install-exec.js.map +1 -1
- package/commands/install.js +9 -6
- package/commands/install.js.map +1 -1
- package/commands/pkg.js +5 -2
- package/commands/pkg.js.map +1 -1
- package/commands/run-exec.js +5 -2
- package/commands/run-exec.js.map +1 -1
- package/commands/run.js +5 -2
- package/commands/run.js.map +1 -1
- package/commands/uninstall.js +9 -6
- package/commands/uninstall.js.map +1 -1
- package/package.json +1 -1
- package/rollback-remove/remove.js +7 -4
- package/rollback-remove/remove.js.map +1 -1
- package/tar/worker.js +6 -3
- package/tar/worker.js.map +1 -1
- package/vlix.js +7 -4
- package/vlix.js.map +1 -1
- package/vlr.js +7 -4
- package/vlr.js.map +1 -1
- package/vlrx.js +7 -4
- package/vlrx.js.map +1 -1
- package/vlt.js +7 -4
- package/vlt.js.map +1 -1
- package/vlx.js +7 -4
- package/vlx.js.map +1 -1
package/cache-unzip/unzip.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import process from 'node:process'
|
|
2
2
|
import {Buffer} from 'node:buffer'
|
|
3
3
|
import {setImmediate,clearImmediate} from 'node:timers'
|
|
4
|
-
import {
|
|
5
|
-
const require = createRequire_d9f27302f4df(import.meta.filename)
|
|
4
|
+
import {resolve as resolve_ea07b01565e5} from 'node:path'
|
|
6
5
|
const global = globalThis
|
|
6
|
+
const __build_dirname_ea07b01565e5 = resolve_ea07b01565e5(import.meta.dirname,"..")
|
|
7
|
+
const __build_filename_ea07b01565e5 = resolve_ea07b01565e5(__build_dirname_ea07b01565e5,"unzip.js")
|
|
8
|
+
import {createRequire as createRequire_ea07b01565e5} from 'node:module'
|
|
9
|
+
const require = createRequire_ea07b01565e5(__build_filename_ea07b01565e5)
|
|
7
10
|
var __create = Object.create;
|
|
8
11
|
var __defProp = Object.defineProperty;
|
|
9
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -7721,7 +7724,7 @@ var Cache = class _Cache extends LRUCache {
|
|
|
7721
7724
|
|
|
7722
7725
|
// ../../src/cache-unzip/dist/esm/unzip.js
|
|
7723
7726
|
import { gunzipSync } from "node:zlib";
|
|
7724
|
-
var __CODE_SPLIT_SCRIPT_NAME =
|
|
7727
|
+
var __CODE_SPLIT_SCRIPT_NAME = __build_filename_ea07b01565e5.replace(/\.ts$/, ".js");
|
|
7725
7728
|
var main = async () => {
|
|
7726
7729
|
process.title = "vlt-cache-unzip";
|
|
7727
7730
|
const path3 = process.argv[2];
|
|
@@ -7821,7 +7824,7 @@ var main = async () => {
|
|
|
7821
7824
|
if (!didSomething)
|
|
7822
7825
|
process.exit(1);
|
|
7823
7826
|
};
|
|
7824
|
-
if (process.argv[1] ===
|
|
7827
|
+
if (process.argv[1] === __build_filename_ea07b01565e5) {
|
|
7825
7828
|
void main();
|
|
7826
7829
|
}
|
|
7827
7830
|
export {
|