Justin Grant

Results 205 comments of Justin Grant

All - not sure if the problem I was running into matches the problem reported here, but I was able to share typescript code among multiple projects with awesome-typescript-loader and...

How does new CRA support for TypeScript with Babel (https://github.com/facebook/create-react-app/pull/4837 -- thanks @brunolemos!) affect create-react-app-typescript?

> Would be as easy as creating a package verify-source-maps and run it in the prepublish hook? The only problem with an opt-in solution is that most library authors probably...

@pocesar Using `cookie` was intentional. The fact that it's undefined demonstrates the bug. In a normal browser, the `cookie` header is filled on that request because it was set by...

I found a workaround for the issue: ```js preNavigationHooks: [ async (crawlingContext, requestAsBrowserOptions) => { if (!requestAsBrowserOptions.cookieJar) requestAsBrowserOptions.cookieJar = new CookieJar(); } ] ``` When I add this hook, the...

Too busy now, but maybe in November when 3.7 is out. ;-)

I led the design work for JavaScript's new [Temporal.ZonedDateTime](https://tc39.es/proposal-temporal/docs/zoneddatetime.html) type, and I stumbled upon this issue while doing research for the upcoming IETF standardization of the `ZonedDateTime` string serialization format....

> * We do have DST-safe datetime arithmetic performed on `Instant` + `TimeZone` Oh, this is an interesting solution! Sorry for missing this, my knowledge of Kotlin is limited. It's...

> `disambiguation` option: could you please clarify, why these specific values? In particular, does any user actually require something other than the default behavior? Good question. We were mostly following...