Slava Dobromyslov

Results 31 comments of Slava Dobromyslov

Tried to install it in the project with Angular 10 and fresh @angular/fire and got lots of inconsistent package errors. ``` npm WARN deprecated [email protected]: AngularFire has moved, we're now...

For Windows users a slight fix is needed. Add `shell: true` to the spawn options. Without this option Windows expects "npx.cmd" instead of "npx". ```typescript import { ExecutorContext } from...

Thank you for your candor. It would be awesome if you also write a note to this answer https://stackoverflow.com/a/33556815/1177597 when you have spare time.

@DavidBM thanks for this notice. It helped me to distinguish pros and cons in this question: https://stackoverflow.com/questions/70701405/what-sha256-rust-implementation-take-for-no-std-embedded-device

Angular 11 mask="0*" Backspace does not remove values. Only delete works.

This occurs because `path.sep` is `\` when Node.js is running on Windows. You have to change path separator in your credentials `"~/.gcloud/keyfile.json"` from `/` to windows-style `\` like below. **serverless.yml:**...

Agree. It's a weird mistake and it becomes even weirder when Dylan looks at the [2, 4, 7, 6, 6] returns 7 and says the algorythm is ok. And another...

Yep. Having the same error.

Same issue with `class-transformer` decorators like `@Type()`. ```typescript import 'reflect-metadata'; import { Type } from 'class-transformer'; export class DeliveryGenericData { /** Packages. */ @Type(() => PackageDto) packages?: PackageDto[]; } ```...

@deviprsd thanks for the hint. Tried meta (https://github.com/mateodelnorte/meta) and it looks like meta is better choice for cases like this one: https://blog.nrwl.io/dev-workflow-using-git-submodules-and-yarn-workspaces-14fd06c07964