Daniel Tschinder
Daniel Tschinder
The underlying issue here is that we end up in a deadlock, as the netlify dev server is waiting for astro to finish starting, but astro is waiting for the...
Feel free to merge. You can also use kodiak for merging, by simply adding the `automerge` label.
Oh I see, I can merge if you want?
Please add more information: What does your babel config look like? Which version of babel and babel-loader are you using? What does your webpack config look like?
@YoungCC2 There are a couple of problems with your config: 1. @babel/preset-flow is a preset and should be listed under preset and not plugins 2. The more important problem, and...
Thanks for your PR. I looked at ts-loader to see how the solve it. I think for the babel loader a more generic option makes sense in comparison to the...
Can we add jest 26 and cut a release please?
The `max_size` option has to be `10M` not `10MB`. `10MB` will be interpreted as 10 byte
Is this error happening during bundling or when trying to run the function? It is really hard to help without being able to really look at anything, but I made...
`included_files` is using [glob](https://github.com/isaacs/node-glob) and `included_files = ["api/dist/*.js"]` matches `api/dist/file.js` but not `api/dist/subfolder/file.js` What you probably want is `included_files = ["api/dist/**/*.js"]`. `**` is called the `globstar` which matches everything even...