So, speaking of Xeo in #5 ...
We may have discussed this in the past, but part of the reason I brought in ds.css locally in Xeo, is because modern-normalize does not get bundled in here and I was not sure what to do about that at the time.
Here I am adding it in Xeo’s ds.css github.com/famebot/xeo@b8c6d57203/_includes/css/ds.css (L8)
Here is the issue in ds/package.json:
github.com/lumeland/ds@6d78223fe4/package.json (L23)
We cp modern-normalize.css but the copied file does not get bundled in the second step, && postcss src/main.css -o ds.css, because it is not imported in src/main.css: github.com/lumeland/ds@6d78223fe4/src/main.css (L1-L16)
or in https://github.com/lumeland/ds/blob/main/src/reset.css
So maybe we don’t need it? But if we want it, we need to import it somewhere, unless I am missing something.
So, speaking of Xeo in #5 ...
We may have discussed this in the past, but part of the reason I brought in `ds.css` locally in Xeo, is because `modern-normalize` does not get bundled in here and I was not sure what to do about that at the time.
Here I am adding it in Xeo’s `ds.css` https://github.com/famebot/xeo/blob/b8c6d5720320e0da06dbd45b504c1b60a1a20f65/_includes/css/ds.css#L8
Here is the issue in `ds/package.json`:
https://github.com/lumeland/ds/blob/6d78223fe4f4d8a70519dbea15da122debefe51d/package.json#L23
We `cp` `modern-normalize.css` but the copied file does not get bundled in the second step, `&& postcss src/main.css -o ds.css`, because it is not imported in `src/main.css`: https://github.com/lumeland/ds/blob/6d78223fe4f4d8a70519dbea15da122debefe51d/src/main.css#L1-L16
or in https://github.com/lumeland/ds/blob/main/src/reset.css
So maybe we don’t need it? But if we want it, we need to import it somewhere, unless I am missing something.