Johan Brook
Johan Brook
> could we get this to support graphql inline and not just graphql files? Maybe feels like a separate, general, extension for setting another language/grammar on a block inside of...
Yep, agreed on opt-in. Perhaps an option in `GenerateTypescriptOptions` that can be configured on the command line, such as: ``` graphql-schema-typescript generate-ts --timestamp ``` I'd be happy to file a...
Yes, it crashes in canary too for me: ```bash → deno --unstable-temporal Deno 1.40.3+93e8ece exit using ctrl+d, ctrl+c, or close() REPL is running with all permissions allowed. To specify permissions,...
@bartlomieju English (UK) is my primary language set in settings: It seems to crash here, right? ``` 2 deno 0x00000001018964d8 V8_Fatal(char const*, ...) + 268 3 deno 0x0000000101c626a0 v8::internal::Intl::GetTimeZoneIndex(v8::internal::Isolate*, v8::internal::Handle)...
Can repro for Deno 1.40.5 as well.
Magically fixed in 1.41.0 ✨ ```bash $ deno --unstable-temporal Deno 1.41.0 > Temporal.Now.plainDateISO() 2024-02-23 ```
@oscarotero Thanks for replying. Yes, that'd work too, with the added benefit of documentation in the frontmatter. But if not, would it be improper to suggest that Lume provides the...
@kollhof Nice find, I didn't know Lume was using Temporal internally. Out of curiosity, how do you plan on formatting the timezone-aware dates in your markup? I'd love for this...
Note: we also had to do this, in `job_class.coffee`: ```diff class JobQueue constructor: (@root, @type, options..., @worker) -> - unless @ instanceof JobQueue - return new JobQueue @root, @type, options...,...
@SimonSimCity ``` TypeError: Job.processJobs is not a constructor at JobCollection.processJobs (packages/vsivsi_job-collection/src/shared.coffee:170:31) ... ``` Isn't that because some code is trying to call `Jobs.processJobs()` and the original code is referring to...