@mintlify/cli 4.0.1329 → 4.0.1331
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/bin/signup.js +1 -1
- package/bin/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/signup.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1331",
|
|
4
4
|
"description": "The Mintlify CLI",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@inquirer/prompts": "7.9.0",
|
|
48
|
-
"@mintlify/common": "1.0.
|
|
49
|
-
"@mintlify/link-rot": "3.0.
|
|
50
|
-
"@mintlify/models": "0.0.
|
|
51
|
-
"@mintlify/prebuild": "1.0.
|
|
52
|
-
"@mintlify/previewing": "4.0.
|
|
53
|
-
"@mintlify/validation": "0.1.
|
|
48
|
+
"@mintlify/common": "1.0.1037",
|
|
49
|
+
"@mintlify/link-rot": "3.0.1229",
|
|
50
|
+
"@mintlify/models": "0.0.342",
|
|
51
|
+
"@mintlify/prebuild": "1.0.1185",
|
|
52
|
+
"@mintlify/previewing": "4.0.1254",
|
|
53
|
+
"@mintlify/validation": "0.1.795",
|
|
54
54
|
"adm-zip": "0.5.16",
|
|
55
55
|
"chalk": "5.2.0",
|
|
56
56
|
"color": "4.2.3",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"vitest": "2.1.9",
|
|
93
93
|
"vitest-mock-process": "1.0.4"
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "463c6cfcac643215fb34b361e91089fdf12c339a"
|
|
96
96
|
}
|
package/src/signup.tsx
CHANGED
|
@@ -125,5 +125,5 @@ export async function signup(options: SignupOptions = {}): Promise<void> {
|
|
|
125
125
|
const token = body as TokenResponse;
|
|
126
126
|
await storeCredentials(token.access_token, token.refresh_token);
|
|
127
127
|
addLog(<SuccessLog message="account created and logged in successfully" />);
|
|
128
|
-
addLog(<Text>
|
|
128
|
+
addLog(<Text>Continue in the browser tab where you verified your email to connect GitHub.</Text>);
|
|
129
129
|
}
|