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/vlx.js
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import process from
|
|
3
|
-
import {Buffer} from
|
|
4
|
-
import {setImmediate,clearImmediate} from
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
import process from"node:process"
|
|
3
|
+
import {Buffer} from"node:buffer"
|
|
4
|
+
import {setImmediate, clearImmediate} from"node:timers"
|
|
5
|
+
import {resolve as resolve_afba299642a6} from"node:path"
|
|
6
|
+
import {pathToFileURL as pathToFileURL_afba299642a6} from"node:url"
|
|
7
|
+
import {createRequire as createRequire_afba299642a6} from"node:module"
|
|
8
|
+
var global = globalThis
|
|
9
|
+
var __bundleDirname_afba299642a6 = resolve_afba299642a6(import.meta.dirname, "")
|
|
10
|
+
var __bundleFilename_afba299642a6 = resolve_afba299642a6(__bundleDirname_afba299642a6, "vlx.js")
|
|
11
|
+
var __bundleUrl_afba299642a6 = pathToFileURL_afba299642a6(__bundleFilename_afba299642a6).toString()
|
|
12
|
+
var require = createRequire_afba299642a6(__bundleFilename_afba299642a6)
|
|
8
13
|
var __create = Object.create;
|
|
9
14
|
var __defProp = Object.defineProperty;
|
|
10
15
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -12083,8 +12088,8 @@ var init_esm19 = __esm({
|
|
|
12083
12088
|
init_esm();
|
|
12084
12089
|
loadCommand = async (command) => {
|
|
12085
12090
|
try {
|
|
12086
|
-
const
|
|
12087
|
-
return await import(
|
|
12091
|
+
const __commandPath_dcf9f613a419 = `./commands/${command}.js`;
|
|
12092
|
+
return await import(__commandPath_dcf9f613a419);
|
|
12088
12093
|
} catch (e) {
|
|
12089
12094
|
throw error("Command not implemented", {
|
|
12090
12095
|
found: command,
|