Daniel Lo Nigro

Results 263 comments of Daniel Lo Nigro

Strange... It should definitely be adding `c:\Program Files (x86)\Yarn\bin` to the path, see here: https://github.com/yarnpkg/yarn/blob/master/resources/winsetup/Yarn.wxs#L30-L38 Note that `c:\Program Files (x86)\Yarn\bin` is added to the **system** path, while the AppData path...

> What exactly is the purpose of the user/appdata yarn path? It's supposed to be for packages you install globally (eg. `yarn global install foo`), I think there's some bugs...

@dev6rodn - There's two parts to the path - The system path, and the user path. `C:\Program Files (x86)\Yarn\bin` is added to the system path by the installer, so it...

@1j01 - The AppData directory is only for global packages you install via Yarn (using `yarn global add`). Yarn itself should be in `c:\Program Files (x86)\Yarn\bin\`. Is the Program Files...

> You have NodeJS to use the installer anyway, so you definitely have npm. No, you don't. Many people on Windows use the Node.js executable directly, which doesn't include npm:...

You can download the Windows installer and use that if you don't have Chocolatey or Scoop installed. Sent from my phone. On Sep 5, 2017 2:39 AM, "Burak YiÄŸit Kaya"...

My workaround is very similar to @bdelbasso's. I instead implemented it as a separate method: ```php class ResultPagerWithCustomField extends ResultPager { public function fetchAllUsingField( ApiInterface $api, string $method, string $field,...

I realised I could just make my own M3U file that points to the other M3U files, and use that. That'd work, right? Not sure why I didn't think of...

I'm considering lazily loading Bugsnag to avoid the very large hit to bundle size. It means that I'll miss any errors that occur before Bugsnag is loaded, but at least...