@base44-preview/cli 0.0.54-pr.538.476f05c → 0.0.54-pr.538.7e2f1d6
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/dist/cli/index.js +2 -3
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -251806,8 +251806,7 @@ function getLogoutCommand() {
|
|
|
251806
251806
|
// src/cli/commands/auth/whoami.ts
|
|
251807
251807
|
async function whoami(_ctx) {
|
|
251808
251808
|
const auth2 = await readAuth();
|
|
251809
|
-
|
|
251810
|
-
return { outroMessage: `Logged in as: ${theme.styles.bold(identity4)}` };
|
|
251809
|
+
return { outroMessage: `Logged in as: ${theme.styles.bold(auth2.email)}` };
|
|
251811
251810
|
}
|
|
251812
251811
|
function getWhoamiCommand() {
|
|
251813
251812
|
return new Base44Command("whoami", { requireAppConfig: false }).description("Display current authenticated user").action(whoami);
|
|
@@ -261824,4 +261823,4 @@ export {
|
|
|
261824
261823
|
CLIExitError
|
|
261825
261824
|
};
|
|
261826
261825
|
|
|
261827
|
-
//# debugId=
|
|
261826
|
+
//# debugId=B453E5669D23DDA064756E2164756E21
|