Larry Botha

Results 48 comments of Larry Botha

Was experiencing this, too. From https://github.com/wmonk/create-react-app-typescript/issues/348#issuecomment-401583230 I added the package to the webpack configs' `includes` (project is ejected): ```js // Compile .tsx? { test: /\.(ts|tsx)$/, include: [ paths.appSrc, path.resolve('..', 'node_modules',...

I'm glad this has been proposed. Cache busting should be disabled by default, however. I'm not sure of the use case for loading every image every page load, but allowing...

The `docker-compose.yml` in the project root may be useful: https://github.com/CoorpAcademy/serverless-plugins/blob/master/docker-compose.yml#L13

NOTE: reverted TS syntax in components in #112. Without `svelte-forms-lib` compiling TS components to regular Svelte components, users importing `svelte-forms-lib` would be responsible for compilation, which is a poor UX....

NOTE: see https://github.com/mattjennings/svelte-typescript-component-template for compiling TS components and building definitions

@kiuKisas it seems what you're looking to do is to sequentially submit forms if a previous form's values are valid and have been submitted, and without waiting for the response...

@kiuKisas I like the idea of returning something with the resolved promise, I'm not sure that returning `$isValid` feels right, though. It may be odd to get the validity of...

@TylerRick never heard of Final Form, thanks for linking to the Svelte implementation - Final Form's approach sounds excellent! If you've got something ready to push as a PR that'd...

related to https://github.com/tjinauyeung/svelte-forms-lib/issues/20

@mstibbard not ideal, but you should be able to pass initial form values through to `updateInitialValues` to trigger a validation: https://github.com/tjinauyeung/svelte-forms-lib/blob/f8bc5488b787d8b5b81eb855b90e5e76b565e7d3/lib/create-form.js#L184