Mark Volkmann
Mark Volkmann
I started with an app created by `npx degit sveltejs/template`, so the "build" npm script is ```json "build": "rollup -c", ``` The file `public/index.html` includes this line: ```html ``` Is...
Maybe the answer is that we need a new equivalent of sveltejs/template that is specific to using Parcel.
The more I think about this, I'm convinced that we really need a way to create a new app that uses Parcel by running `npx degit some-repo/some-template app-name` like we...
Yeah, I'm just thinking that if there's a single command to spin up a Svelte app using Rollup or Webpack (using "npx degit") but not for Parcel, it might hurt...
Sounds good! I'd be happy to help also. Let me know later if you want me to pitch in. You can close this issue now if you'd like ... or...
Is there a recommended way to handle this case now? For example, I have a `GET /dog/{id}` route that needs to return JSON when a matching dog is found and...
Thanks! I think warp should support an easier way to do this, but at least it works. Somehow my `POST /dog` route stopped working and I now get a 404....
Thanks so much for your help on this!
Not sure if it is related, but I see a typo in the file prohibit_implicit_scope_builtin_variable.py. Note the spelling of "Builtin". ```` class ProhibitImplicitScopeBuitlinVariable(AbstractPolicy): ````
Okay, I think that is the cause of the problem. I believe fixing that typo will fix this issue.