tangled
alpha
login
or
join now
stevedylan.dev
/
sequoia
A CLI for publishing standard.site documents to ATProto
sequoia.pub
standard
site
lexicon
cli
publishing
30
fork
atom
overview
issues
5
pulls
1
pipelines
chore: format
stevedylan.dev
4 days ago
ef653f91
bb0dee75
0/0
Waiting for spindle ...
+2
-6
2 changed files
expand all
collapse all
unified
split
packages
cli
src
commands
publish.ts
sync.ts
+1
-3
packages/cli/src/commands/publish.ts
···
246
246
247
247
// Create agent
248
248
const connectingTo =
249
249
-
credentials.type === "oauth"
250
250
-
? credentials.handle
251
251
-
: credentials.pdsUrl;
249
249
+
credentials.type === "oauth" ? credentials.handle : credentials.pdsUrl;
252
250
s.start(`Connecting as ${connectingTo}...`);
253
251
let agent: Awaited<ReturnType<typeof createAgent>> | undefined;
254
252
try {
+1
-3
packages/cli/src/commands/sync.ts
···
108
108
// Create agent
109
109
const s = spinner();
110
110
const connectingTo =
111
111
-
credentials.type === "oauth"
112
112
-
? credentials.handle
113
113
-
: credentials.pdsUrl;
111
111
+
credentials.type === "oauth" ? credentials.handle : credentials.pdsUrl;
114
112
s.start(`Connecting as ${connectingTo}...`);
115
113
let agent: Awaited<ReturnType<typeof createAgent>> | undefined;
116
114
try {