Maël Nison

Results 627 comments of Maël Nison

Ping @hwillson? Without these patches, Yarn users will see a lot of warnings in future releases 🙂

Thanks @fson ! I've tried it locally and `expo start --offline` works with the iOS simulator 🎉 If possible I'd like to run the E2E on the iOS or Android...

Oh, also there's one caveat: since we don't recommend global packages anymore (since they aren't part of the lockfile they make projects non-deterministic), in order for `yarn expo` to work...

@evocateur if by any chance you saw a way to land this PR in any way I'd appreciate - it's currently difficult for third-party projects to use the `workspace:` protocol...

> We could attach two functions to the main export to split the two operations, while keeping the current behavior intact. Like > > ``` > app.use(csurf()) > ``` >...

Might also be related to #57

Hello 👋 To give some context, PnP is basically a different way to install the project dependencies. Instead of generating a node_modules directory, Yarn setups the files so that they...

The right way going forward would be the [`packageManager` field](https://nodejs.org/api/packages.html#packages_packagemanager), but npm doesn't support it yet.

Thanks for this PR! However, I'm not too fond of this. It can be easily workaround as such: ``` npm_config_node_sqlite3_binary_host_mirror=http://npm.taobao.org/mirrors/ yarn install ``` This PR means that we would have...

Hm, maybe, still I don't think comfortable enabling this for all arguments. Best case, I'd go for something like this: ``` yarn -c node_sqlite3_binary_host_mirror=http://npm.taobao.org/mirrors/ ```