7 Matching Annotations
- Oct 2022
-
-
And yeah, you two should probably gang up :)
-
what is the difference? and why do you write it from scratch?
-
- Jun 2021
-
ruanmartinelli.com ruanmartinelli.com
-
In fact, npm is not trying to reinvent the wheel. You can find similarities between all three Workspace implementations.
-
-
www.mutuallyhuman.com www.mutuallyhuman.com
-
Rather than write new tooling we decided to take advantage of tooling we had in place for our unit tests. Our unit tests already used FactoryBot, a test data generation library, for building up test datasets for a variety of test scenarios. Plus, we had already built up a nice suite of helpers that we coud re-use. By using tools and libraries already a part of the backend technology’s ecosystem we were able to spend less time building additional tooling. We had less code to maintain because of this and more time to work on solving our customer’s pain points.
-
- May 2021
-
documentation.mjml.io documentation.mjml.io
-
MJML comes out of the box with a set of standard components to help you build easily your first templates without having to reinvent the wheel.
Tags
Annotators
URL
-
- Nov 2020
-
github.com github.com
-
from my point of view, it is (by far) the best way, to build a layer on top https://github.com/material-components/material-components-web . This is also the path that the Angular Material team has taken, although they have already made a huge effort to create the components themselves.
-
-
github.com github.com
-
This is Sass based, and therefore doesn't require Svelte components
Just because we could make Svelte wrapper components for each Material typography [thing], doesn't mean we should.
Compare:
material-ui [react] did make wrapper components for typography.
- But why did they? Is there a technical reason why they couldn't just do what svelte-material-ui did (as in, something technical that Svelte empowers/allows?), or did they just not consider it?
svelte-material-ui did not.
- And they were probably wise to not do so. Just reuse the existing work from the Material team so that there's less work for you to keep in sync and less chance of divergence.
-