Ryan Roemer

Results 175 comments of Ryan Roemer

I have an example running the dashboard from a TS config webpack config file for this PR: https://github.com/FormidableLabs/webpack-dashboard/pull/341 Just checkout the repository and run `yarn dev-ts`. You can look at...

Oh, reading this more -- the dashboard currently relies on inter-process communication between a webpack process and the dashboard (really a websocket server that pretty prints stuff). Maybe what you...

This is confusing as webpack shouldn't even be a dependency in the bundle. Can you open up a minimal repository that exhibits the same issue? Thanks!

We're constrained in what information we can display UI-wise and not overwhelm the dashboard, real-estate-wise. Fortunately, you can see a much more detailed information report using the CLI version of...

@jpdriver -- I believe this is the current best "fix" I have for the deploy thing. There's apparently a lot of complexity in how commits attach to PRs in GH....

Research note: CRA makes the decision to reach into `node_modules` for source maps here: https://github.com/facebook/create-react-app/blob/main/packages/react-scripts/config/webpack.config.js#L352-L358 And this is not easily overridable without it seems disabling sourcemaps entirely. It does look...

For ducktyping here are the keys used in `[email protected]`: ```js { "scaleBand": { "type": "function", "keys": [ "domain", "range", "copy", "rangeRound", "bandwidth", "step", "round", "padding", "paddingInner", "paddingOuter", "align" ] },...

Reviewing the source code, I think that the issue was introduced by https://github.com/serverless/serverless/pull/7680 in the new `compareWithLastLayer()` function that reaches out to AWS directly to see whether or not the...

I'm taking a stab at a PR here, but did want to get some more input if possible. Seems like there are two options: ## Option One - `sls package`...

Digging in more to `lib/plugins/aws/deploy/lib/checkForChanges.js` I think that `checkIfDeploymentIsNecessary()` is extended or refactored to do something like: 1. If all object hashes (cf template, functions zips, layers zips) are identical,...