Guilherme Tod
Guilherme Tod
I'd like to add another problem related to it: If you change to Angular's preset, it'll only include in changelog commits with lowercase types (`ci`), even if you override the...
The issue is actually the absence of the file indicated in the [`main` field](/JsDaddy/ngx-mask/blob/1443f19fb7105bcb3db55260a20aa36016561b82/projects/ngx-mask-lib/package.json#L30). Angular 13 probably doesn't generate "umd.js" files anymore, so this file doesn't exist. I'm unsure if...
For reference: ngrx/platform#3248
Yes, that's basically it. To provide a more practical use case: Where I work at, we use ngx-translate, which ships with a `TranslateService` that has a method called `instant` and...
> And btw, I recommend using `ngneat/transloco` :) I thought you'd say that hahaha. Unfortunatetly, there's a lot of things done in the project already before I joined the company....
I'm suddenly getting a problem when trying to push too. But I get a differente message: 'Syntax error: Missing name after . operator. line: 29 file: server/main' I probably already...
I managed to get it working but I don't recall exactly which moment I got it fully working (push and execution). I can only recall that resetting my locale managed...
If anyone comes after this, I'm using the following for now: ```js const namePattern = /([a-z0-9]+|#\{\$.*\})((-[a-z0-9]+|#\{\$.*\})+)?/; componentSelectors: (componentName) => new RegExp(`^\\.(${componentName})(((--|__)(${namePattern.source}))+)?$`) ``` It's been working so far. If anyone try...
Also incompatible with [`prettier-plugin-organize-attributes`](https://github.com/NiklasPor/prettier-plugin-organize-attributes)
A question here: shouldn't the validation part of this project be put on [`transloco-validator`](https://www.npmjs.com/package/@ngneat/transloco-validator)? I think more people may have this use case of "I don't want extract, I only...