Glenn 'devalias' Grant

Results 1036 comments of Glenn 'devalias' Grant
trafficstars

From the previous issue I linked: > I was on the latest NodeJS version (16.10.0). Note that tests pass for me when switching to the 14.x LTS release of Node.

This is an issue with all 16.x and higher due to a change in the underlying error messages from node; as the previously linked issue describes in more detail, which...

The build is currently failing due to the following error: ``` BUILDING react-server-dom-webpack-writer.browser.production.min.server.js (umd_prod) Could not resolve import "react-server-dom-webpack/src/ReactFlightServerWebpackBundlerConfig" in /home/circleci/project/packages/react-server/src/forks/ReactFlightServerConfig.dom-browser.js using exports defined in /home/circleci/project/packages/react-server-dom-webpack/package.json. internal/fs/utils.js:314 throw err; ^...

It seems yarn `1.x`'s `remove` doesn't update the `yarn.lock` file particularly well.. is there a best practice way for doing this, or is it just a manual sort of thing...

Playing around with things, this seems to be a working set of upgraded rollup version/plugins that still seems to produce the same build output for `build/node_modules/react/umd/react.development.js`. Note that: - It...

Given there seem to be so many different places that define various Node versions across the codebase, I wonder if it would make sense to add some kind of automated...

Looking at the [`postinstall` script in the main `package.json`](https://github.com/facebook/react/blob/main/package.json#L118), we can see the following: ``` "postinstall": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json && node ./scripts/flow/createFlowConfigs.js && node ./scripts/yarn/downloadReactIsForPrettyFormat.js", ``` [Looking at `node_modules/fbjs-scripts/node/check-dev-engines.js`](https://github.com/facebook/fbjs/blob/main/packages/fbjs-scripts/node/check-dev-engines.js#L38-L50) it...

This PR can probably closed, as `17.x` appears to have already been added to `devEngines` in: - https://github.com/facebook/react/commit/4072bdfd6d1fcebe520e114e04047e06992af839

https://stackoverflow.com/questions/44571331/specify-network-interface-for-http-request-in-golang > Go's http.Client makes requests using a http.RoundTripper. This, in turn, uses a net.Dialer to establish the outbound network connections. net.Dialer has a field LocalAddr which specifies the local...

Actually.. funnily enough, there already seems to be a PR that is related to this: #56