@voltstack/vpm 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -28302,7 +28302,7 @@ var z = /* @__PURE__ */ Object.freeze({
28302
28302
  // src/lib/config.ts
28303
28303
  var EnvSchema = z.object({
28304
28304
  VPM_REGISTRY: z.string().url().default("https://registry.voltcloud.dev"),
28305
- VPM_CONSOLE: z.string().url().default("https://console.voltcloud.dev"),
28305
+ VPM_CONSOLE: z.string().url().default("https://server.console.voltcloud.dev"),
28306
28306
  VOLT_CACHE_DIR: z.string().optional(),
28307
28307
  VPM_NO_KEYRING: z.string().optional().transform((value) => value === "1" || value === "true")
28308
28308
  });
@@ -38801,7 +38801,7 @@ var register13 = (program2) => {
38801
38801
  // src/index.ts
38802
38802
  var buildProgram = () => {
38803
38803
  const program2 = new Command();
38804
- program2.name("vpm").description("VoltCloud plugin registry CLI").version("1.0.0", "-v, --version", "output the current version").option("--registry <url>", "override the registry URL").option("--console <url>", "override the console URL").option("--verbose", "enable verbose logging").hook("preAction", (thisCommand) => {
38804
+ program2.name("vpm").description("VoltCloud plugin registry CLI").version("1.0.1", "-v, --version", "output the current version").option("--registry <url>", "override the registry URL").option("--console <url>", "override the console URL").option("--verbose", "enable verbose logging").hook("preAction", (thisCommand) => {
38805
38805
  const opts = thisCommand.opts();
38806
38806
  if (opts.verbose) {
38807
38807
  setVerbose(true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltstack/vpm",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "VoltCloud plugin registry CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",