Pete Ryan-McFarlane
Pete Ryan-McFarlane
👍 and Safari fails too
Not solved it, but the demo importing as a module works which you may find useful: https://patleeman.github.io/quill-markdown-shortcuts/module/
We had a similar issue today - a custom web component (also a dropdown/select) is set up with `formAssociated = true` and calling `attachInternals`. It seems if I directly add...
And here
Sorry to not be more involved in this issue, I've been on annual leave until today. I feel that exercism should have a very low barrier to entry where possible,...
Yeah I like your final suggestion. Do you think we can gradually introduce namespaces one exercise at a time in individual PRs? I guess we need to figure out how...
I don't mind the `functions.php` file - it seems to be a clear naming convention at least. I've also seen (and quite liked) the file take on the namespace as...
Ok good point. I think situation 2 is unlikely in our exercise project but your first point is reasonable. Let’s go with functions.php then? 👍
Sounds good, I’ve used php-cs-fixer and php CodeSniffer - both on the same project at times, although I wouldn’t recommend this because in edge cases they sometimes contradict each other...
To get around this I manually read and transformed my migrations files like so: ```ts const migrations = fs.readdirSync(migrationsDir).map(name => { const { default: migration } = require(`./migrations/${name}`); return {...