Mike Austin

Results 21 comments of Mike Austin

I'm looking to simply disable the submit button until the form has values and is validated. I'm looking for something like form.validateFields(), but only returning data, checking untouched fields, and...

``` [options] module.name_mapper='^universal' ->'/src/universal' ``` Should this also work for files outside the project root? `module.name_mapper='^universal' ->'/../something/src/universal' `

I could try, but the Edit this Page link is pointing to github.com/gregberge/svgredit/... – I'm not sure where that is supposed to go. The page hosting that link is https://react-svgr.com/docs/migrate,...

You could use dynamic import() to import ES modules dynamically. The trick is to tell Webback not to convert dynamic import()s for it's own use (lazy loading, chunking): import(/*webpackIgnore: true*/...

I'm confused because in the README it says it uses https://github.com/eligrey/FileSaver.js, but that is "file-saver" not "file-saver.js". The code hasn't been changed in 5 years?

I was curios about how to run the current web site locally–I wanted to play around with how jsDump outputs objects. If I go into website and do npm install,...

Why is the semicolon needed for '=>'? I'd like to return a value in nested code instead of using buildList() for example: ``` Factor = "(" _ head:Expression _ tail:(","...

Maybe "Code" could be a little smarter, balancing brackets and braces, and handling LineTerminator? It wouldn't need to know about full JavaScript, but that may be harder than it sounds.

5 years late, but I liked where the language was going. I like functional aspect and immutability, but languages like Elm make my brain hurt. And Lispy ones make my...

When I started using Pegjs/Peggy, I too wasn't sure what the best approach to generate and traverse the AST was. It can be dead simple, this is what I've been...