tangled
alpha
login
or
join now
nekomimi.pet
/
wisp.place-monorepo
87
fork
atom
Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
87
fork
atom
overview
issues
9
pulls
pipelines
fix headless passwords
nekomimi.pet
3 weeks ago
70017577
6df7d4ff
1/2
deploy-wisp.yml
success
37s
test.yml
failed
30s
+11
-6
3 changed files
expand all
collapse all
unified
split
cli
index.ts
package.json
packages
create-wisp
package.json
+8
-3
cli/index.ts
reviewed
···
26
26
import { callWispXrpc } from './lib/xrpc.ts';
27
27
28
28
const program = new Command();
29
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
281
-
.description('List sites and domains from wisp XRPC routes');
282
282
+
.description('List sites and domains from wisp XRPC routes')
283
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
320
-
.description('Manage domains with wisp XRPC');
322
322
+
.alias('domains')
323
323
+
.description('Manage domains with wisp XRPC')
324
324
+
.enablePositionalOptions();
321
325
322
326
addXrpcAuthOptions(
323
327
domainCommand
···
399
403
400
404
const siteCommand = program
401
405
.command('site')
402
402
-
.description('Manage sites with wisp XRPC');
406
406
+
.description('Manage sites with wisp XRPC')
407
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
reviewed
···
1
1
{
2
2
"name": "wispctl",
3
3
-
"version": "1.0.9",
3
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
reviewed
···
1
1
{
2
2
"name": "create-wisp",
3
3
-
"version": "1.0.9",
3
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
13
-
"wispctl": "^1.0.9"
13
13
+
"wispctl": "^1.0.10"
14
14
}
15
15
}