Jacob Raihle

Results 12 comments of Jacob Raihle

Thanks, @webther! It does seem to cover some cases: https://jsfiddle.net/wz5y3svp/. However, it has some problems as well: * v-html does not accept direct string input, but instead goes looking for...

It should still be treated as an HTML comment, not rendered as text. The second example renders correctly but relies on a data property in the parent instead of allowing...

@marvinhagemeister I'm working with @wbern on the same project. The issue is that the components we want to wrap are using TypeScript typings rather than React's PropTypes, and we would...

Because `connectedCallback` is called as soon as _one_ property is set, the component will be rendered before all required props have a value. This _appears_ to be fixed by simply...

Sorry for the confusion, I mean `_getItemPosition`, not `findPositionForItem`. As for reproduction, one of the tests I wrote for vertical grids fails without the fix, as the items are stacked...

I hacked together an S3 implementation (https://github.com/raihle/rushstack/tree/aws-build-cache), but there are a lot of issues with it: * I had to upgrade to TypeScript 4+ (https://github.com/aws/aws-sdk-js-v3/issues/1919) and make the following fixes...

A bit late to the party, and I'm not exactly _recommending_ the approach, but we are currently doing this in our PRs: ```bash rush publish --prerelease-name - --publish --partial-prerelease --apply...

I am having similar issues, although I was never using this action earlier: ``` Warning: 🔥 Server responded with error (Unexpected token < in JSON at position 0): 404null for...

I'd also like to see built-in support for this, but it's not that hard to do yourself: `c8 --reporter none -- && c8 report` The initial run will not print...

After some more experiments, it seems that the summary is the problem. With `disable-job-summary` enabled (and similarly, if there is no build info to publish and thus nothing to summarize),...