@vendian/cli 0.0.8 → 0.0.9
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/cli-wrapper.mjs +3 -1
- package/package.json +1 -1
package/cli-wrapper.mjs
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createRequire as __vendianCreateRequire } from 'node:module';
|
|
3
|
+
const require = __vendianCreateRequire(import.meta.url);
|
|
2
4
|
|
|
3
5
|
var __create = Object.create;
|
|
4
6
|
var __defProp = Object.defineProperty;
|
|
@@ -36728,7 +36730,7 @@ import { execFile } from "node:child_process";
|
|
|
36728
36730
|
import { promisify } from "node:util";
|
|
36729
36731
|
|
|
36730
36732
|
// src/version.js
|
|
36731
|
-
var CLI_VERSION = true ? "0.0.
|
|
36733
|
+
var CLI_VERSION = true ? "0.0.9" : process.env.npm_package_version || "0.0.0-dev";
|
|
36732
36734
|
|
|
36733
36735
|
// src/npm-update.js
|
|
36734
36736
|
var execFileAsync = promisify(execFile);
|