@link-assistant/agent 0.0.11 → 0.0.12
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/package.json +1 -1
- package/src/cli/cmd/auth.ts +3 -2
package/package.json
CHANGED
package/src/cli/cmd/auth.ts
CHANGED
|
@@ -132,9 +132,10 @@ export const AuthLoginCommand = cmd({
|
|
|
132
132
|
vercel: 5,
|
|
133
133
|
};
|
|
134
134
|
|
|
135
|
-
|
|
135
|
+
// Note: Using `select` instead of `autocomplete` because `autocomplete` is only
|
|
136
|
+
// available in @clack/prompts v1.0.0-alpha.1+, while this package uses stable v0.11.0
|
|
137
|
+
let provider = await prompts.select({
|
|
136
138
|
message: 'Select provider',
|
|
137
|
-
maxItems: 8,
|
|
138
139
|
options: [
|
|
139
140
|
...pipe(
|
|
140
141
|
providers,
|