Peter Müller
Peter Müller
`123` will be reported as a color because one.colors parser accepts css shorthand also without a prefixed `#`. This leads to false positives when using numbers to describe font sizes....
The graph is very useful to see timings of each chunk, but it would be equally useful to see what is the content of the delivered chunk in order to...
Version: [email protected] The type definition of `CookieListItem` has a `sameSite` property that must be a `cookieSameSite` enum and does not allow strings. But this enum is not exported, so it's...
Since this boilerplate already implements an offline strategy and already tries to improve the mobile display by using touch-icons, tile-images and theme colors, there should really be a web app...
The current documentation responds to `http:` requests. It would improve security if it would redirect to the `https:` equivalent instead
Defeat mocha
Defeat mocha UI's: - [x] BDD - [x] TDD - [x] QUnit - [ ] Exports - [ ] Require
When visiting a page on `https://webpack.js.org` in a subdirectory while omitting the trailing slash for the directory, an HTTP redirect chain happens that redirects the traffic through an unencrypted connection:...
All navigation links from https://github.com/webpack/webpack.js.org/blob/master/src/components/Navigation/Links.json get a `/` prepended in https://github.com/webpack/webpack.js.org/blob/master/src/components/Navigation/Navigation.jsx#L33 and https://github.com/webpack/webpack.js.org/blob/master/src/components/Navigation/Navigation.jsx#L87 Since some Urls in the json are protocol relative links (eg. `//medium.com/webpack`), the resulting href in the...
Currently, all error types seem to be represented as `new Error()`. Other error types like `SyntaxError`, `ReferenceError` etc, are not serialized any differently Suggestion: ```js stringify(new SyntaxError('syntax')); // "new SyntaxError(syntax')"...