vlt 0.0.0-0.1727464479666 → 0.0.0-0.1727821659739
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/LICENSE +3 -3
- package/cache-unzip/unzip.js +13 -8
- package/cache-unzip/unzip.js.map +1 -1
- package/commands/config.js +11 -6
- package/commands/config.js.map +1 -1
- package/commands/exec.js +11 -6
- package/commands/exec.js.map +1 -1
- package/commands/help.js +11 -6
- package/commands/help.js.map +1 -1
- package/commands/install-exec.js +11 -6
- package/commands/install-exec.js.map +1 -1
- package/commands/install.js +15 -10
- package/commands/install.js.map +1 -1
- package/commands/pkg.js +11 -6
- package/commands/pkg.js.map +1 -1
- package/commands/run-exec.js +11 -6
- package/commands/run-exec.js.map +1 -1
- package/commands/run.js +11 -6
- package/commands/run.js.map +1 -1
- package/commands/uninstall.js +15 -10
- package/commands/uninstall.js.map +1 -1
- package/package.json +23 -6
- package/rollback-remove/remove.js +13 -8
- package/rollback-remove/remove.js.map +1 -1
- package/tar/worker.js +12 -7
- package/tar/worker.js.map +1 -1
- package/vlix.js +13 -8
- package/vlix.js.map +1 -1
- package/vlr.js +13 -8
- package/vlr.js.map +1 -1
- package/vlrx.js +13 -8
- package/vlrx.js.map +1 -1
- package/vlt.js +13 -8
- package/vlt.js.map +1 -1
- package/vlx.js +13 -8
- package/vlx.js.map +1 -1
package/tar/worker.js
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
import process from
|
|
2
|
-
import {Buffer} from
|
|
3
|
-
import {setImmediate,clearImmediate} from
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import process from"node:process"
|
|
2
|
+
import {Buffer} from"node:buffer"
|
|
3
|
+
import {setImmediate, clearImmediate} from"node:timers"
|
|
4
|
+
import {resolve as resolve_becf104a6025} from"node:path"
|
|
5
|
+
import {pathToFileURL as pathToFileURL_becf104a6025} from"node:url"
|
|
6
|
+
import {createRequire as createRequire_becf104a6025} from"node:module"
|
|
7
|
+
var global = globalThis
|
|
8
|
+
var __bundleDirname_becf104a6025 = resolve_becf104a6025(import.meta.dirname, "..")
|
|
9
|
+
var __bundleFilename_becf104a6025 = resolve_becf104a6025(__bundleDirname_becf104a6025, "worker.js")
|
|
10
|
+
var __bundleUrl_becf104a6025 = pathToFileURL_becf104a6025(__bundleFilename_becf104a6025).toString()
|
|
11
|
+
var require = createRequire_becf104a6025(__bundleFilename_becf104a6025)
|
|
7
12
|
var __create = Object.create;
|
|
8
13
|
var __defProp = Object.defineProperty;
|
|
9
14
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -7995,7 +8000,7 @@ var unpack = (tarData, target, didGzipAlready = false) => {
|
|
|
7995
8000
|
};
|
|
7996
8001
|
|
|
7997
8002
|
// ../../src/tar/dist/esm/worker.js
|
|
7998
|
-
var __CODE_SPLIT_SCRIPT_NAME =
|
|
8003
|
+
var __CODE_SPLIT_SCRIPT_NAME = __bundleFilename_becf104a6025.replace(/\.ts$/, ".js");
|
|
7999
8004
|
var main = (pp) => {
|
|
8000
8005
|
const onMessage = ({ id, tarData, target }) => {
|
|
8001
8006
|
if (!(tarData instanceof ArrayBuffer) || typeof target !== "string") {
|