@dosu/cli 0.3.3 → 0.3.4
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/dosu.js +5 -37
- package/package.json +1 -1
package/bin/dosu.js
CHANGED
|
@@ -3807,25 +3807,10 @@ h1 {
|
|
|
3807
3807
|
color: #999;
|
|
3808
3808
|
margin-bottom: 28px;
|
|
3809
3809
|
}
|
|
3810
|
-
.
|
|
3811
|
-
|
|
3812
|
-
border: 1px solid #eaeaea;
|
|
3813
|
-
border-radius: 8px;
|
|
3814
|
-
padding: 16px 20px;
|
|
3810
|
+
.close-msg {
|
|
3811
|
+
margin-top: 4px;
|
|
3815
3812
|
font-size: 16px;
|
|
3816
3813
|
color: #666;
|
|
3817
|
-
line-height: 1.5;
|
|
3818
|
-
cursor: pointer;
|
|
3819
|
-
transition: background 0.15s, border-color 0.15s;
|
|
3820
|
-
}
|
|
3821
|
-
.card:hover {
|
|
3822
|
-
background: #f5f5f5;
|
|
3823
|
-
border-color: #ccc;
|
|
3824
|
-
}
|
|
3825
|
-
.close-hint {
|
|
3826
|
-
margin-top: 20px;
|
|
3827
|
-
font-size: 14px;
|
|
3828
|
-
color: #999;
|
|
3829
3814
|
}
|
|
3830
3815
|
</style>
|
|
3831
3816
|
</head>
|
|
@@ -3848,25 +3833,8 @@ h1 {
|
|
|
3848
3833
|
<h1>Authentication Successful</h1>
|
|
3849
3834
|
<p class="subtitle">You're all set. The CLI is now authenticated.</p>
|
|
3850
3835
|
${emailLine}
|
|
3851
|
-
<
|
|
3852
|
-
<p class="close-hint" id="close-hint">This tab will close automatically in <span id="countdown">10</span>s</p>
|
|
3836
|
+
<p class="close-msg">You can close this tab and return to your terminal.</p>
|
|
3853
3837
|
</div>
|
|
3854
|
-
<script>
|
|
3855
|
-
function tryClose(){
|
|
3856
|
-
window.close();
|
|
3857
|
-
setTimeout(function(){
|
|
3858
|
-
var c=document.getElementById('close-card');
|
|
3859
|
-
c.textContent='You can close this tab now.';
|
|
3860
|
-
c.style.cursor='default';
|
|
3861
|
-
c.onclick=null;
|
|
3862
|
-
var h=document.getElementById('close-hint');
|
|
3863
|
-
if(h)h.style.display='none';
|
|
3864
|
-
clearInterval(t);
|
|
3865
|
-
},500);
|
|
3866
|
-
}
|
|
3867
|
-
var s=10,el=document.getElementById('countdown');
|
|
3868
|
-
var t=setInterval(function(){if(--s<=0){clearInterval(t);tryClose();}el.textContent=s;},1000);
|
|
3869
|
-
</script>
|
|
3870
3838
|
</body>
|
|
3871
3839
|
</html>`;
|
|
3872
3840
|
}
|
|
@@ -4622,7 +4590,7 @@ Run ${info("dosu mcp add <tool>")} to manually configure a tool.`);
|
|
|
4622
4590
|
const results = stepConfigureTools(cfg, selection);
|
|
4623
4591
|
stepShowSummary(results, cfg.mode);
|
|
4624
4592
|
if (cfg.mode === MODE_OSS) {
|
|
4625
|
-
Se("Setup complete! Using open-source libraries only.\
|
|
4593
|
+
Se("Setup complete! Using open-source libraries only.\n\nTips: Run `dosu setup` again to connect your own repos.");
|
|
4626
4594
|
} else {
|
|
4627
4595
|
Se("\uD83C\uDF89 Setup complete!");
|
|
4628
4596
|
}
|
|
@@ -5099,7 +5067,7 @@ init_config();
|
|
|
5099
5067
|
init_providers();
|
|
5100
5068
|
|
|
5101
5069
|
// src/version/version.ts
|
|
5102
|
-
var VERSION = "0.3.
|
|
5070
|
+
var VERSION = "0.3.4";
|
|
5103
5071
|
function getVersionString() {
|
|
5104
5072
|
return `v${VERSION}`;
|
|
5105
5073
|
}
|