@base44-preview/cli 0.0.50-pr.445.6527e7d → 0.0.50-pr.445.7d24dfc
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 -3
- package/dist/cli/index.js.map +4 -4
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -251020,7 +251020,7 @@ async function socialLoginAction({ log, isNonInteractive, runTask: runTask2 }, p
|
|
|
251020
251020
|
let outroMessage = `${label} login ${newStatus}${oauthNote} in local config. Run \`base44 auth push\` or \`base44 deploy\` to apply.`;
|
|
251021
251021
|
if (useCustomOAuth && !clientSecret) {
|
|
251022
251022
|
outroMessage += `
|
|
251023
|
-
Remember to push the client secret separately: base44
|
|
251023
|
+
Remember to push the client secret separately: base44 secrets set --env-file <path>`;
|
|
251024
251024
|
}
|
|
251025
251025
|
return { outroMessage };
|
|
251026
251026
|
}
|
|
@@ -253228,6 +253228,7 @@ function createDevLogger() {
|
|
|
253228
253228
|
|
|
253229
253229
|
// src/cli/dev/dev-server/function-manager.ts
|
|
253230
253230
|
import { spawn as spawn2 } from "node:child_process";
|
|
253231
|
+
import { pathToFileURL } from "node:url";
|
|
253231
253232
|
var READY_TIMEOUT = 30000;
|
|
253232
253233
|
|
|
253233
253234
|
class FunctionManager {
|
|
@@ -253307,7 +253308,7 @@ class FunctionManager {
|
|
|
253307
253308
|
const process21 = spawn2("deno", ["run", "--allow-all", this.wrapperPath], {
|
|
253308
253309
|
env: {
|
|
253309
253310
|
...globalThis.process.env,
|
|
253310
|
-
FUNCTION_PATH: func.entryPath,
|
|
253311
|
+
FUNCTION_PATH: pathToFileURL(func.entryPath).href,
|
|
253311
253312
|
FUNCTION_PORT: String(port),
|
|
253312
253313
|
FUNCTION_NAME: func.name
|
|
253313
253314
|
},
|
|
@@ -260463,4 +260464,4 @@ export {
|
|
|
260463
260464
|
CLIExitError
|
|
260464
260465
|
};
|
|
260465
260466
|
|
|
260466
|
-
//# debugId=
|
|
260467
|
+
//# debugId=E5716DE2F2BFF5D364756E2164756E21
|