Fetch all submissions made to Netlify Forms in your site and stash them as JSON files before your build runs making the data available to your static site generator at build time.
MIT License
2
stars
1
forks
source link
Create `inputs.dataDirectory` if it does not exist #5
If the directory specified by
inputs.dataDirectory
does not exist, the following call will fail:https://github.com/philhawksworth/netlify-plugin-form-submissions/blob/69dd463bd0a22600c695b0acc302ba54e542e67b/index.js#L18
Deploy logs Bugsnag error
This could be fixed by creating the directory if it does not exist (e.g. with
make-dir
or similar library).