Martin Kopeček

Results 24 comments of Martin Kopeček

Angular CLI 6.0.7 still the same. ```shell # ng new test-app --minimal --skip-tests --dry-run CREATE test-app/README.md (1024 bytes) CREATE test-app/angular.json (4100 bytes) CREATE test-app/package.json (1312 bytes) CREATE test-app/tsconfig.json (384 bytes)...

I have the same use case, but I would rather show in some way, that under this path there is another API with its own spec and so I would...

Moreover, I don't know about all the reasons of checking whether it is a Promise, but probably it is not needed at all. One should just use `Promise.resolve(valueOrPromise)` to get...

@maykon-oliveira: 😢 Adding to EditorJS like this: ```ts new EditorJS({ ... tools: { header: Header, } } ``` Causes following type error: ``` Type 'typeof Header' is not assignable to...

Seems the definition of sanitize (1) is typed as `{level: boolean, text: object}` but according to EditorJS types it should be `[key: string]: TagConfig | ((el: Element) => TagConfig);`, where...

Aktuální stav je furt stejný. Přemýšlel jsem nad tím a myslím, že by stálo za to oddělit tu public část, která je jednoduchá a ta se může udělat v čemkoliv....

Martin a GH nevím, ale určitě je na Slacku. Priorita to teď asi moc není, ale pokud se bude tahle část rozvíjet, bude se rozvíjet "špatným směrem".

We have a same problem with Postgre. When it drops connection after inactivity (an hour or so), error is returned instead of recreating the connection. Tried `propagateCreateError:false`, but did not...

Thanks for the propagateCreateError info, didn't know about that. Yer, it is true about the retry, that would cause problems. The real problem is in the connection validation. Concerning the...

Probably the same problem with docker image of 18.2-alpine, npm version 8.9.0. ```json { "name": "test-app", "version": "0.0.0", "scripts": { "test": "npm --version" }, ... } ``` The issue here...