Soviut
Soviut
My build looks like ``` tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json ``` The `tsconfig.build.json` extends `tsconfig.json` to exclude tests. In my `tsconfig.json` I have the following config ```json {...
# Bug report ## Describe the bug I'm using Vue 3 with Vue Router 4 (latest). I'm using OAuth for sign-in, specifically github. The flow works fine and redirects back,...
The Request class in `util/request.js` has a `download()` method. This method uses `node-fetch-h2`. It has a try/catch around the `fetch()` call, however, `node-fetch-h2` differs from `window.fetch` in the browser because...
[storyblokurl]: https://www.storyblok.com?utm_source=github.com&utm_medium=issue-template I have a project using Astro. Astro has a CloudFlare Worker "adapter" for doing server side rendering (SSR). This will re-render the preview page every time someone hits...
When using the keyboard to scroll, none of the scroll events fire. Here's a fiddle showing this in action: http://jsfiddle.net/Soviut/n422H/ Notice that all scrolling causes the green square to move...
Since this is more of a frontend component than a node module, Bower support would make more sense than NPM.
When installed with Bower, the project contains source files, fonts, images and html that aren't relevant to being included in an external project. The bower file should be set up...
``` jade //- select if $field->type == 'select' select.form__field.form__field--select(id='#{field.id}', name='#{field.name}') each option in field.options option(value='#{option.value}')= option.name //- textarea else if $field->type == 'textarea' textarea.form__field.form__field--textarea(id='#{field.id}', name='#{field.name}', value='#{field.value}', placeholder='#{field.placeholder}') //- text else...
I'm trying to skip the install step so that I can install manually. I need to install manually so I can use some install flags to ignore peer dependency warnings...