@base44-preview/cli 0.0.45-pr.420.ddd6169 → 0.0.45-pr.420.fbee2b5
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 +4 -13
- package/dist/cli/index.js.map +6 -6
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -167116,8 +167116,8 @@ var require_factory = __commonJS((exports) => {
|
|
|
167116
167116
|
exports.createProxyMiddleware = createProxyMiddleware;
|
|
167117
167117
|
var http_proxy_middleware_1 = require_http_proxy_middleware();
|
|
167118
167118
|
function createProxyMiddleware(options8) {
|
|
167119
|
-
const { middleware } = new http_proxy_middleware_1.HttpProxyMiddleware(options8);
|
|
167120
|
-
return
|
|
167119
|
+
const { middleware: middleware2 } = new http_proxy_middleware_1.HttpProxyMiddleware(options8);
|
|
167120
|
+
return middleware2;
|
|
167121
167121
|
}
|
|
167122
167122
|
});
|
|
167123
167123
|
|
|
@@ -246901,10 +246901,7 @@ async function logout() {
|
|
|
246901
246901
|
return { outroMessage: "Logged out successfully" };
|
|
246902
246902
|
}
|
|
246903
246903
|
function getLogoutCommand() {
|
|
246904
|
-
return new Base44Command("logout", {
|
|
246905
|
-
requireAuth: false,
|
|
246906
|
-
requireAppConfig: false
|
|
246907
|
-
}).description("Logout from current device").action(logout);
|
|
246904
|
+
return new Base44Command("logout", { requireAppConfig: false }).description("Logout from current device").action(logout);
|
|
246908
246905
|
}
|
|
246909
246906
|
|
|
246910
246907
|
// src/cli/commands/auth/whoami.ts
|
|
@@ -248307,9 +248304,6 @@ ${summaryLines.join(`
|
|
|
248307
248304
|
}
|
|
248308
248305
|
function getDeployCommand2() {
|
|
248309
248306
|
return new Base44Command("deploy").description("Deploy all project resources (entities, functions, agents, connectors, and site)").option("-y, --yes", "Skip confirmation prompt").action(async (options, command2) => {
|
|
248310
|
-
if (command2.isNonInteractive && !options.yes) {
|
|
248311
|
-
throw new InvalidInputError("--yes is required in non-interactive mode");
|
|
248312
|
-
}
|
|
248313
248307
|
return await deployAction({
|
|
248314
248308
|
...options,
|
|
248315
248309
|
isNonInteractive: command2.isNonInteractive
|
|
@@ -248743,9 +248737,6 @@ async function deployAction2(options) {
|
|
|
248743
248737
|
}
|
|
248744
248738
|
function getSiteDeployCommand() {
|
|
248745
248739
|
return new Base44Command("deploy").description("Deploy built site files to Base44 hosting").option("-y, --yes", "Skip confirmation prompt").action(async (options, command2) => {
|
|
248746
|
-
if (command2.isNonInteractive && !options.yes) {
|
|
248747
|
-
throw new InvalidInputError("--yes is required in non-interactive mode");
|
|
248748
|
-
}
|
|
248749
248740
|
return await deployAction2({
|
|
248750
248741
|
...options,
|
|
248751
248742
|
isNonInteractive: command2.isNonInteractive
|
|
@@ -256059,4 +256050,4 @@ export {
|
|
|
256059
256050
|
CLIExitError
|
|
256060
256051
|
};
|
|
256061
256052
|
|
|
256062
|
-
//# debugId=
|
|
256053
|
+
//# debugId=633CFCDA24D8535E64756E2164756E21
|