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/vlt.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_9156ebf4eea9} from 'node:path'
|
|
7
6
|
const global = globalThis
|
|
7
|
+
const __build_dirname_9156ebf4eea9 = resolve_9156ebf4eea9(import.meta.dirname,"")
|
|
8
|
+
const __build_filename_9156ebf4eea9 = resolve_9156ebf4eea9(__build_dirname_9156ebf4eea9,"vlt.js")
|
|
9
|
+
import {createRequire as createRequire_9156ebf4eea9} from 'node:module'
|
|
10
|
+
const require = createRequire_9156ebf4eea9(__build_filename_9156ebf4eea9)
|
|
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 _898ca2ce8615 = `./commands/${command}.js`;
|
|
12090
|
+
return await import(_898ca2ce8615);
|
|
12088
12091
|
} catch (e) {
|
|
12089
12092
|
throw error("Command not implemented", {
|
|
12090
12093
|
found: command,
|