Maël Nison

Results 627 comments of Maël Nison

> because Yarn doesn't perform deep-merging for registry configuration, the value for `npmAuthToken` in the user's home folder is masked away, and now _all_ requests are unauthenticated. Therefore, there is...

> This is a no-go for OSS devs. E.g. I run `vite-plugin-ssr`'s test suite against Node 12 to make sure `vite-plugin-ssr` works with Node 12. We don't intend to support...

I added an item to the list 👍

Yep, exactly 👍

Workaround: ```js function isMatch(cwd: string, patterns: Array) { let paths = patterns; let basenames = []; for (let t = 0; t < patterns.length; ++t) { if (patterns[t].includes(`/`)) { if...

I'm not sure I understand - per the documentation: > patterns without slashes will be matched against the basename of the path if it contains slashes So when matching `/lib/libzip.js`...

Let's say we have the following gitignore: ``` /lib/foo.js *.ts ``` In this case, `/lib/foo.js` must be compared against the absolute paths (ie `/src/lib/foo.js` shouldn't match) while `*.ts` should be...

Ping @rubenspgcavalcante ? 😊

A few points: - I think using Corepack would be a great idea! I'd also give us some practical insight as to how easy it is to use Corepack inside...

Optional dependencies should be handled using : ``` js define( 'vendors/punycode', function ( ) { window.punycode; } ); ``` This way, if the user wants to use punycode, he can...