Ray Foss
Ray Foss
I took the time to read all comments @paleite makes a great summary. Unfortunately no one has mentioned what this means for the **a11y** and i18n among us with arthritis,...
One of them has to go... And we can't get rid of spaces... So tabs have to go. — Douglas Crockford https://m.youtube.com/watch?v=En8Ubs2k1O8 Parsing code is one of the most trivial...
Incomplete List of accessibility and i18n benefits of spaces: - Tabs disenfranchise the 2 Billion less fortunate humans who have a phone as their only powered, Internet connected PC. Yes...
My solution was to migrate to vue-cli, I have no idea what Webpack version it uses... but it's not longer our concern when using it. It wasn't as difficult as...
Shouldn't be... CLI has been pushed hard over the last year, and it doesn't have that issue. The issue happens when you upgrade to Webpack 4, it's actually easier to...
The yarn support could be implemented by making all NPM install calls with --no-package-lock. I may have yarn installed globally, but need/prefer to use turbo, pnpm or an older/newer NPM....
As to how to better support refs, we could add an addSchema method to the returned class. Which would then allow users to combine schemas with an import tree. This...
I've ruled out upstream... I cannot reproduce the issue with [email protected] and [email protected] https://stackblitz.com/edit/vitejs-vite-qdrpwy?file=BugReproduction.ts With up to date @feathersjs/schema dependencies, I can no longer reproduce the issue at all! https://stackblitz.com/edit/bug-feathersjs-schema-2680-vfz5ho?file=src%2Fschema%2Fusers.schema.ts,src%2FsafeSchema.ts,client.ts
https://stackblitz.com/edit/feathers-vite-chat-ys59tp?file=src%2Fschema.ts,src%2Fschema%2Fusers.schema.ts,src%2Fschema%2Fmessages.schema.ts,client.ts For some reason copying schema to your src makes the intellisense server not crash... https://stackblitz.com/edit/feathers-vite-chat-ys59tp?file=src%2Fschema%2Fusers.schema.ts
The issue only manifests when loading a module from node_modules, if the module is anywhere else in the project, DEFAULT_AJV will be discarded, cleaning up any polluting modules. See PR.