Adrien Foulon

Results 434 comments of Adrien Foulon

Only 5 years have passed...

To answer @cwtuan that's literally the point of the PR so I don't get the question To answer @JulianIsrael nope it wouldn't, there is nothing in this PR that would...

This is such a requested feature, I have seen at least 5 issues about it, there has been forgotten PR #108 For laravel we have [ziggy](https://github.com/tighten/ziggy/) which has this feature...

@clauderic Any motion/thoughts on the PR please? It's been pending for quite some time

Same problem; if you're gonna switch to ESM at least have the decency to provide a transpiled version 😞

@blakeembrey For the path `(/first/:one)?/:second` this is the expected output `{second: 'foo'} => /foo` `{one: 'bar', second: 'foo'} => /first/bar/foo`

`{/first/:one?}?` is equivalent to `(/first)?/:one?` so it would compile to this `(/first/:one?)?/:second` `{second: 'foo'} => compiles to /foo => also parses /first/foo` `{one: 'bar', second: 'foo'} => /first/bar/foo` Regarding nesting...

And more than that, shouldn't the database only be renamed and not deleted and recreated? Otherwise all data is lost when you change a tenant's db username It seems like...

I'm having a similar issue with the vue ts processor, but not during fixing but during detection of errors ```js 'import/order': ['warn', { alphabetize: { order: 'asc', caseInsensitive: true, },...

@ljharb Yep I'm sure ![image](https://user-images.githubusercontent.com/6115458/165368838-44b23e8d-bebf-4e64-aa59-e2fb4740be6a.png) It will also auto fix it, by adding a space in between but then the original error is still there, so I just removed `'newlines-between':...