vlt 0.0.0-0 → 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/LICENSE +15 -0
- 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 +8 -6
- 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/commands/config.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import process from 'node:process'
|
|
2
2
|
import {Buffer} from 'node:buffer'
|
|
3
3
|
import {setImmediate,clearImmediate} from 'node:timers'
|
|
4
|
-
import {
|
|
5
|
-
const require = createRequire_055fdfe7bd7e(import.meta.filename)
|
|
4
|
+
import {resolve as resolve_e63ce2779496} from 'node:path'
|
|
6
5
|
const global = globalThis
|
|
6
|
+
const __build_dirname_e63ce2779496 = resolve_e63ce2779496(import.meta.dirname,"..")
|
|
7
|
+
const __build_filename_e63ce2779496 = resolve_e63ce2779496(__build_dirname_e63ce2779496,"config.js")
|
|
8
|
+
import {createRequire as createRequire_e63ce2779496} from 'node:module'
|
|
9
|
+
const require = createRequire_e63ce2779496(__build_filename_e63ce2779496)
|
|
7
10
|
var __create = Object.create;
|
|
8
11
|
var __defProp = Object.defineProperty;
|
|
9
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|