vercel-vm-factory 0.2.8 → 0.3.8

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Vercel VM Factory
2
2
 
3
- Create a tiny Vercel Container deployment: copy `wsterm` from `ghcr.io/v1xingyue/ws-shell:v1.1.alpine` into a selected base image, then deploy with Vercel CLI.
3
+ Create a tiny Vercel Container deployment: copy `wsterm` from `ghcr.io/v1xingyue/ws-shell:v1.8.alpine` into a selected base image, then deploy with Vercel CLI.
4
4
 
5
5
  ```bash
6
6
  npx vercel-vm-factory create \
package/deploy-vm.mjs CHANGED
@@ -310,10 +310,7 @@ async function doctor() {
310
310
  printKeyValue("base", defaults.base || "not set");
311
311
  printKeyValue("project", defaults.project || "not set");
312
312
  printKeyValue("scope", defaults.scope || "not set");
313
- printKeyValue(
314
- "source image",
315
- defaults.from || "ghcr.io/v1xingyue/ws-shell:v1.1.alpine",
316
- );
313
+ printKeyValue("source image", defaults.from || defaultWsShellImage);
317
314
  printKeyValue("auth mode", defaults["auth-mode"] || "not set");
318
315
  printKeyValue(
319
316
  "auth user",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel-vm-factory",
3
- "version": "0.2.8",
3
+ "version": "0.3.8",
4
4
  "description": "Create Vercel Container deployments for ws-shell from selectable base images.",
5
5
  "license": "MIT",
6
6
  "type": "module",