vlt 0.0.0-0.1727472455017 → 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 -11
- package/cache-unzip/unzip.js.map +1 -1
- package/commands/config.js +11 -9
- package/commands/config.js.map +1 -1
- package/commands/exec.js +11 -9
- package/commands/exec.js.map +1 -1
- package/commands/help.js +11 -9
- package/commands/help.js.map +1 -1
- package/commands/install-exec.js +11 -9
- package/commands/install-exec.js.map +1 -1
- package/commands/install.js +15 -13
- package/commands/install.js.map +1 -1
- package/commands/pkg.js +11 -9
- package/commands/pkg.js.map +1 -1
- package/commands/run-exec.js +11 -9
- package/commands/run-exec.js.map +1 -1
- package/commands/run.js +11 -9
- package/commands/run.js.map +1 -1
- package/commands/uninstall.js +15 -13
- package/commands/uninstall.js.map +1 -1
- package/package.json +23 -6
- package/rollback-remove/remove.js +13 -11
- package/rollback-remove/remove.js.map +1 -1
- package/tar/worker.js +12 -10
- package/tar/worker.js.map +1 -1
- package/vlix.js +13 -11
- package/vlix.js.map +1 -1
- package/vlr.js +13 -11
- package/vlr.js.map +1 -1
- package/vlrx.js +13 -11
- package/vlrx.js.map +1 -1
- package/vlt.js +13 -11
- package/vlt.js.map +1 -1
- package/vlx.js +13 -11
- package/vlx.js.map +1 -1
package/vlt.js
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import process from
|
|
3
|
-
import {Buffer} from
|
|
4
|
-
import {setImmediate,clearImmediate} from
|
|
5
|
-
import {resolve
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
import process from"node:process"
|
|
3
|
+
import {Buffer} from"node:buffer"
|
|
4
|
+
import {setImmediate, clearImmediate} from"node:timers"
|
|
5
|
+
import {resolve as resolve_f176177a0e42} from"node:path"
|
|
6
|
+
import {pathToFileURL as pathToFileURL_f176177a0e42} from"node:url"
|
|
7
|
+
import {createRequire as createRequire_f176177a0e42} from"node:module"
|
|
8
|
+
var global = globalThis
|
|
9
|
+
var __bundleDirname_f176177a0e42 = resolve_f176177a0e42(import.meta.dirname, "")
|
|
10
|
+
var __bundleFilename_f176177a0e42 = resolve_f176177a0e42(__bundleDirname_f176177a0e42, "vlt.js")
|
|
11
|
+
var __bundleUrl_f176177a0e42 = pathToFileURL_f176177a0e42(__bundleFilename_f176177a0e42).toString()
|
|
12
|
+
var require = createRequire_f176177a0e42(__bundleFilename_f176177a0e42)
|
|
11
13
|
var __create = Object.create;
|
|
12
14
|
var __defProp = Object.defineProperty;
|
|
13
15
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -12086,8 +12088,8 @@ var init_esm19 = __esm({
|
|
|
12086
12088
|
init_esm();
|
|
12087
12089
|
loadCommand = async (command) => {
|
|
12088
12090
|
try {
|
|
12089
|
-
const
|
|
12090
|
-
return await import(
|
|
12091
|
+
const __commandPath_e9574e2d38ec = `./commands/${command}.js`;
|
|
12092
|
+
return await import(__commandPath_e9574e2d38ec);
|
|
12091
12093
|
} catch (e) {
|
|
12092
12094
|
throw error("Command not implemented", {
|
|
12093
12095
|
found: command,
|