Lars Gyrup Brink Nielsen
Lars Gyrup Brink Nielsen
I found that we need to add this line to `polyfills.ts` to use Augury: ``` import 'core-js/es7/reflect'; ``` which means that we need to install `core-js` as a package dependency....
Would you be kind enough to post an example, @rdkleine?
Here are some of the reasons why decorators are currently bad: - Decorators are not part of EcmaScript. - [The proposal that the `experimentalDecorators` compilation option is based on](https://github.com/tc39/proposal-decorators-previous), was...
> @LayZeeDK > with all respect (I learned alot from your blogs and following them often, much appreciate them 🙏 ) your concerns looks very invalid to me as angular...
@BioPhoton the downside is that your type annotations on this component won't match the data binding API that other components are going to use. This will result in compile errors...
Thank you for the PR review, @ChristopherPHolder! >The new documentation website looks great and it seems the maintenance effort will be lower. Thanks. Docusuarus 2.0 recently went stable and supports...
@edbzn >I noticed there is still a root docs folder with outdated content in it, maybe we can remove it. The files left in the `/docs` directory are served as...
We have to [change DNS records](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages) when this PR is merged because they are currently referencing Netlify rather than GitHub Pages.
I can't even get this hack working in my end-to-end tests (not Cypress Angular component tests) using Nx 13.10.2 with Cypress 9.1.1 which is kind of interesting since you seem...
I had `"pluginsFile": false` in my `cypress.json` configuration 🤦♂️ Replaced it with `"pluginsFile": "./src/plugins/index.ts"`. I also had to add `"env": { "tsConfig": "tsconfig.json" }` to `cypress.json`.