You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -72,7 +76,7 @@ If you decide that our styling is not for you, all you'll need to do is remove t
72
76
73
77
### Included Default Testing
74
78
75
-
We’ve included some tooling that helps us maintain these templates. This template currently uses:
79
+
We've included some tooling that helps us maintain these templates. This template currently uses:
76
80
77
81
- [Renovate](https://www.mend.io/free-developer-tools/renovate/) - to regularly update our dependencies
78
82
- [Cypress](https://www.cypress.io/) - to run tests against how the template runs in the browser
@@ -82,11 +86,11 @@ If your team is not interested in this tooling, you can remove them with ease!
82
86
83
87
### Removing Renovate
84
88
85
-
In order to keep our project up-to-date with dependencies we usea tool called [Renovate](https://github.com/marketplace/renovate). If you’re not interested in this tooling, delete the `renovate.json` file and commit that onto your main branch.
89
+
In order to keep our project up-to-date with dependencies we usea tool called [Renovate](https://github.com/marketplace/renovate). If you're not interested in this tooling, delete the `renovate.json` file and commit that onto your main branch.
86
90
87
91
### Removing Cypress
88
92
89
-
For our testing, we use [Cypress](https://www.cypress.io/) for end-to-end testing. This makes sure that we can validate that our templates are rendering and displaying as we’d expect. By default, we have Cypress not generate deploy links if our tests don’t pass. If you’d like to keep Cypress and still generate the deploy links, go into your `netlify.toml` and delete the plugin configuration lines:
93
+
For our testing, we use [Cypress](https://www.cypress.io/) for end-to-end testing. This makes sure that we can validate that our templates are rendering and displaying as we'd expect. By default, we have Cypress not generate deploy links if our tests don't pass. If you'd like to keep Cypress and still generate the deploy links, go into your `netlify.toml` and delete the plugin configuration lines:
90
94
91
95
```diff
92
96
[[plugins]]
@@ -98,13 +102,13 @@ For our testing, we use [Cypress](https://www.cypress.io/) for end-to-end testin
98
102
- enable = false
99
103
```
100
104
101
-
If you’d like to remove the `netlify-plugin-cypress` build plugin entirely, you’d need to delete the entire block above instead. And then make sure sure to remove the package from the dependencies using:
105
+
If you'd like to remove the `netlify-plugin-cypress` build plugin entirely, you'd need to delete the entire block above instead. And then make sure sure to remove the package from the dependencies using:
102
106
103
107
```bash
104
108
npm uninstall -D netlify-plugin-cypress
105
109
```
106
110
107
-
And lastly if you’d like to remove Cypress entirely, delete the entire `cypress` folder and the `cypress.config.ts` file. Then remove the dependency using:
111
+
And lastly if you'd like to remove Cypress entirely, delete the entire `cypress` folder and the `cypress.config.ts` file. Then remove the dependency using:
108
112
109
113
```bash
110
114
npm uninstall cypress
@@ -114,15 +118,55 @@ npm uninstall cypress
114
118
115
119
Here are some resources to help you on your Angular + Netlify coding fun!
116
120
117
-
- [A video walkthrough of the Angular Quick Start Template](https://youtu.be/rNAiN94bBUs)
118
-
- [A blog post on the Angular Quick Start Template](https://www.netlify.com/blog/get-started-with-angular-on-netlify-quickly)
121
+
- [Angular Docs](https://angular.dev/overview)
122
+
- [Angular CLI Commands](https://angular.dev/cli)
123
+
- [Angular on Netlify Configuration](https://docs.netlify.com/frameworks/angular/)
0 commit comments