Filip Michalowski

Results 4 comments of Filip Michalowski

Firefox for iOS ver. 6.0 ` Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) FxiOS/6.0 Mobile/14D27 Safari/602.4.6 `

You can read the version number from `package.json` file: ``` const fs = require('fs-extra'); const version = fs.readJsonSync('node_modules/cache-loader/package.json').version; ``` (alternatively use async method `fs.readJson` to get a `Promise`)

In Webpack 5 compiler must be closed so that low-priority work (like persistent caching) have the opportunity to complete. https://webpack.js.org/migrate/5/#cleanup-the-code https://webpack.js.org/api/node/#run Wrapping the `done()` call in [webpackWorker.js](https://github.com/trivago/parallel-webpack/blob/master/src/webpackWorker.js) with `compiler.close()`solved the...

`sharedCookiesEnabled` property has nothing to do with Third-Party Cookies. It is needed for iOS 7 or older where cookies would have been stored in `NSHTTPCookieStorage` and `sharedCookiesEnabled` must be set...