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/vlx.js
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
import process from 'node:process'
|
|
3
3
|
import {Buffer} from 'node:buffer'
|
|
4
4
|
import {setImmediate,clearImmediate} from 'node:timers'
|
|
5
|
-
import {
|
|
6
|
-
const require = createRequire_5ede496b0dc7(import.meta.filename)
|
|
5
|
+
import {resolve as resolve_d29a9cae4d58} from 'node:path'
|
|
7
6
|
const global = globalThis
|
|
7
|
+
const __build_dirname_d29a9cae4d58 = resolve_d29a9cae4d58(import.meta.dirname,"")
|
|
8
|
+
const __build_filename_d29a9cae4d58 = resolve_d29a9cae4d58(__build_dirname_d29a9cae4d58,"vlx.js")
|
|
9
|
+
import {createRequire as createRequire_d29a9cae4d58} from 'node:module'
|
|
10
|
+
const require = createRequire_d29a9cae4d58(__build_filename_d29a9cae4d58)
|
|
8
11
|
var __create = Object.create;
|
|
9
12
|
var __defProp = Object.defineProperty;
|
|
10
13
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -12083,8 +12086,8 @@ var init_esm19 = __esm({
|
|
|
12083
12086
|
init_esm();
|
|
12084
12087
|
loadCommand = async (command) => {
|
|
12085
12088
|
try {
|
|
12086
|
-
const
|
|
12087
|
-
return await import(
|
|
12089
|
+
const _a424cbf633f2 = `./commands/${command}.js`;
|
|
12090
|
+
return await import(_a424cbf633f2);
|
|
12088
12091
|
} catch (e) {
|
|
12089
12092
|
throw error("Command not implemented", {
|
|
12090
12093
|
found: command,
|