Fix typos and change some grammatical constructions

This commit is contained in:
daniel.motzko
2021-07-02 14:27:33 +02:00
parent 80526bedd1
commit 4f670a98c0
15 changed files with 91 additions and 34 deletions

View File

@@ -6,6 +6,8 @@ quadrant: tools
[Bower](https://bower.io/) is a package manager for frontend resources such as JavaScript libraries and CSS frameworks. Compared to [npm](https://www.npmjs.com/), it has a somewhat different approach to loading and resolving the packages, resulting in a smaller and cleaner folder structure.
In small web projects, this approach is good and sufficient, but larger projects will need more dependencies such as task runners or testing frameworks, which are not available through Bower. As most of the frontend libraries are also available through npm, it's not surprising that we ask ourselves why Bower is still needed.
In small web projects, this approach is good and sufficient, but larger projects will need more dependencies such as task runners or testing frameworks, which are not available through Bower.
As most of the frontend libraries are also available through npm, it's not surprising that we ask ourselves why Bower is still needed.
At AOE, we decided to use npm as the only package manager to avoid having multiple tools doing similar things. Developers only need to deal with one solution, which makes the project easier to maintain.
At AOE, we decided to use npm as the only package manager to avoid having multiple tools doing similar things.
Developers only need to deal with one solution, which makes the project easier to maintain.