Filipe Silva
Filipe Silva
Yeah I think you could go pretty far with a public firebase. I've seen it get expensive (20k+/month) but with stuff that was obviously going to be expensive. Bit of...
I agree that there are advantages to using a webpack build step for the demo app, but currently it aims to be as similar to https://github.com/angular/quickstart (and official docs) as...
Hm.... can you try changing `'inputmask': 'Inputmask'` to `'inputmask': 'inputmask'` (lowercase) in `rollupBaseConfig`? I'm not sure it's needed even.
Scoped libraries actually need a slightly different setup overall, which this repository does not cater for right now. Your proposed fix would not fully enable scoped repositories - they would...
`ng xi18n` operates over components of your Angular application, but `index.html` is not part of it actually. It's not a component template. I don't think this is functionality we can...
If anyone has is willing to do a PR, or point me in the right direction to do it with webpack/karma-remap-istanbul, I'd be happy to look at it.
@westonpace I see how your solution works. It's something that's worth discussing before being implemented though... A more direct use of your solution would be to add `import './app.module';` to...
@jnizet let me expand upon that solution. Assuming the default: ``` "environments": { "source": "environments/environment.ts", "dev": "environments/environment.ts", "prod": "environments/environment.prod.ts" } ``` So the important bit is that the file in...
@jnizet yes you would still need need to have `prod-fr` and the like. The solution I posted did away with duplication of dev/prod code but still left you with locale...
@intellix I know that's a very popular approach and works great for the scenario you propose. Is there anything blocking you from using it from the CLI side though? The...