We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firebase 11.19.0 (dec/2022): running firebase init with functions setup generates the following snippet:
firebase init
"functions": [ { "source": "functions", "codebase": "default", "ignore": ["node_modules", ".git", "firebase-debug.log", "firebase-debug.*.log"] } ], ...
which is an array. The adapter expects an object.
npm run build
Error: Required "functions.source" field is missing from Firebase Configuration file.
The adapter should accept this default configuration. Probably this will be the default to now on.
0.14.4
1.0.1
The text was updated successfully, but these errors were encountered:
firebase.json:functions
The fix is in main but not released. As a workaround in the meantime for folks, you can update package.json:
"svelte-adapter-firebase": "git://github.com/jthegedus/svelte-adapter-firebase.git#a18d29b",
Sorry, something went wrong.
No branches or pull requests
Describe the Bug
Firebase 11.19.0 (dec/2022): running
firebase init
with functions setup generates the following snippet:which is an array. The adapter expects an object.
Steps to Reproduce
firebase init
and make sure you selected to setup firebase functionsnpm run build
Error: Required "functions.source" field is missing from Firebase Configuration file.
Expected Behaviour
The adapter should accept this default configuration. Probably this will be the default to now on.
svelte-adapter-firebase version
0.14.4
sveltejs/kit version
1.0.1
The text was updated successfully, but these errors were encountered: