Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place

fix headless passwords

+11 -6
+8 -3
cli/index.ts
··· 26 26 import { callWispXrpc } from './lib/xrpc.ts'; 27 27 28 28 const program = new Command(); 29 + program.enablePositionalOptions(); 29 30 30 31 async function promptRequiredText( 31 32 message: string, ··· 278 279 // Logout command 279 280 const listCommand = program 280 281 .command('list') 281 - .description('List sites and domains from wisp XRPC routes'); 282 + .description('List sites and domains from wisp XRPC routes') 283 + .enablePositionalOptions(); 282 284 283 285 addXrpcAuthOptions(listCommand).action(withExit(async (options) => { 284 286 intro(pc.cyan('wisp.place list')); ··· 317 319 318 320 const domainCommand = program 319 321 .command('domain') 320 - .description('Manage domains with wisp XRPC'); 322 + .alias('domains') 323 + .description('Manage domains with wisp XRPC') 324 + .enablePositionalOptions(); 321 325 322 326 addXrpcAuthOptions( 323 327 domainCommand ··· 399 403 400 404 const siteCommand = program 401 405 .command('site') 402 - .description('Manage sites with wisp XRPC'); 406 + .description('Manage sites with wisp XRPC') 407 + .enablePositionalOptions(); 403 408 404 409 addXrpcAuthOptions(domainCommand).action(withExit(async (options) => { 405 410 intro(pc.cyan('wisp.place domain'));
+1 -1
cli/package.json
··· 1 1 { 2 2 "name": "wispctl", 3 - "version": "1.0.9", 3 + "version": "1.0.10", 4 4 "description": "CLI for wisp.place - deploy static sites to the AT Protocol", 5 5 "type": "module", 6 6 "main": "./dist/index.js",
+2 -2
packages/create-wisp/package.json
··· 1 1 { 2 2 "name": "create-wisp", 3 - "version": "1.0.9", 3 + "version": "1.0.10", 4 4 "description": "CLI for wisp.place - deploy static sites to the AT Protocol", 5 5 "type": "module", 6 6 "bin": { ··· 10 10 "bin.js" 11 11 ], 12 12 "dependencies": { 13 - "wispctl": "^1.0.9" 13 + "wispctl": "^1.0.10" 14 14 } 15 15 }