Eskild Diderichsen

Results 112 comments of Eskild Diderichsen

WOW I cannot believe I wasn't able to find this repo... anyway thanks :) I got some code to dig through 🎈

`node_modules` folder is still included using default ignores ``` [14:14:02 info.] (config) config: {"logLevel":"info","extensionsToInclude":"","excludedFolders":["node_modules",".vscode",".git","dist",".chrome"],"excludePattern":"","inheritWorkspaceExcludedFiles":true,"runOrganizeImports":false,"useGitIgnore":true} [14:14:02 info.] (config) excluded files: {"**/.git":true,"**/.svn":true,"**/.hg":true,"**/CVS":true,"**/.DS_Store":true,"**/Thumbs.db":true} :::::::::::::::::::::::::::::::::::::::::::::::::: [14:14:02 info.] (ext) Starting Format Files - Workspace [14:14:02...

I can try :) Currently this library doesn't support duration inputs - I was unable to find a suitable validator Users have to fallback on regex and `matches` which does...

> Arrays/Indexes are safely navigated in templates `bar[0]?.quxx` may be safely navigated runtime. But compile time it's not. Both the language service and the compiler errors on the above. ```...

> [@snebjorn](https://github.com/snebjorn) is this already fixed? I don't know. I didn't do anything with `catalog:`. So I assume not 😄

I was looking to play around with vitest and [msw](https://mswjs.io/) but that requires me to add some setupFiles to the vitest configuration. https://mswjs.io/docs/quick-start ```ts // vitest.setup.ts import { beforeAll, afterEach,...

Ah nice, I'll give it a swing :) BTW your docs say otherwise, perhaps it needs an update :) > The Angular CLI takes care of the Vitest configuration for...

@corymhall I made a small repo that should demonstrate the issue. Again I don't know how to reproduce this on a single machine. https://github.com/snebjorn/Pulumi-cache However I encountered a related issue....

Are you able to reproduce this? Do you need any additional information?

I got this working using the `PrimitiveCollection` trick :) EF support enums as strings. I got it working using ```cs modelBuilder.Entity().PrimitiveCollection(b => b.MyEnums).ElementType().HasConversion(); ``` I tested this query and it...