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/tar/worker.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_d87ed0b6ba7a(import.meta.filename)
|
|
4
|
+
import {resolve as resolve_6fb70f595e4a} from 'node:path'
|
|
6
5
|
const global = globalThis
|
|
6
|
+
const __build_dirname_6fb70f595e4a = resolve_6fb70f595e4a(import.meta.dirname,"..")
|
|
7
|
+
const __build_filename_6fb70f595e4a = resolve_6fb70f595e4a(__build_dirname_6fb70f595e4a,"worker.js")
|
|
8
|
+
import {createRequire as createRequire_6fb70f595e4a} from 'node:module'
|
|
9
|
+
const require = createRequire_6fb70f595e4a(__build_filename_6fb70f595e4a)
|
|
7
10
|
var __create = Object.create;
|
|
8
11
|
var __defProp = Object.defineProperty;
|
|
9
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -7995,7 +7998,7 @@ var unpack = (tarData, target, didGzipAlready = false) => {
|
|
|
7995
7998
|
};
|
|
7996
7999
|
|
|
7997
8000
|
// ../../src/tar/dist/esm/worker.js
|
|
7998
|
-
var __CODE_SPLIT_SCRIPT_NAME =
|
|
8001
|
+
var __CODE_SPLIT_SCRIPT_NAME = __build_filename_6fb70f595e4a.replace(/\.ts$/, ".js");
|
|
7999
8002
|
var main = (pp) => {
|
|
8000
8003
|
const onMessage = ({ id, tarData, target }) => {
|
|
8001
8004
|
if (!(tarData instanceof ArrayBuffer) || typeof target !== "string") {
|