@base44-preview/cli 0.0.36-pr.355.6973e5e → 0.0.36-pr.355.fd88cd2
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 -2
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -233661,7 +233661,9 @@ async function readFunction(configPath) {
|
|
|
233661
233661
|
const entryPath = join5(functionDir, config5.entry);
|
|
233662
233662
|
if (!await pathExists(entryPath)) {
|
|
233663
233663
|
throw new InvalidInputError(`Function entry file not found: ${entryPath} (referenced in ${configPath})`, {
|
|
233664
|
-
hints: [
|
|
233664
|
+
hints: [
|
|
233665
|
+
{ message: "Check the 'entry' field in your function config" }
|
|
233666
|
+
]
|
|
233665
233667
|
});
|
|
233666
233668
|
}
|
|
233667
233669
|
const filePaths = await globby("*.{js,ts,json}", {
|
|
@@ -248717,4 +248719,4 @@ export {
|
|
|
248717
248719
|
CLIExitError
|
|
248718
248720
|
};
|
|
248719
248721
|
|
|
248720
|
-
//# debugId=
|
|
248722
|
+
//# debugId=F8960F6C5439500F64756E2164756E21
|