postcss-normalize
postcss-normalize copied to clipboard
Use the parts of normalize.css (or sanitize.css) you need from your browserslist
When using the _postcss-normalize_ ESM export, the resolution of the _@csstools/normalize.css_ package location fails for me with an `Error: Cannot find module '@csstools/normalize.css'`. Not entirely sure if this is due...
## First issue fixed `"moduleResolution": "node16"` in TS will cause: ``` TS7016: Could not find a declaration file for module postcss-normalize. `postcss-normalize/index.mjs` implicitly has an any type. There are types...
Related: #60 Can we also have a 9.0.1 patch please ? I'm stuck with PostCSS 7 in my project and it looks like postcss-normalize 9.0.0 now breaks every project build...
with this config ```js { plugins: { 'postcss-normalize': {}, }, } ``` putting `@import-normalize;` isn't working, no normalize is imported, and in the output we still have it, not transformed.
> broken out of https://github.com/csstools/postcss-normalize/issues/58#issuecomment-920084981 and https://github.com/csstools/postcss-normalize/issues/58#issuecomment-920154375 ### Context [`[email protected]`](https://github.com/csstools/postcss-normalize/releases/tag/9.0.0) introduced support for normalize and sanitze.css via https://github.com/csstools/postcss-normalize/pull/43. This generous version range broke [v10](https://github.com/csstools/postcss-normalize/issues/58) and [v9](https://github.com/csstools/postcss-normalize/issues/62) ecosystems when `sanitize.css` removed...
Hi there, we're upgrading dependencies in CRA and we see that you've dropped support for Node 10, which we're still supporting today (although we plan to deprecated). It looks like...
Using `Once` is a bad practice, because it doesn't guarantee plugin comparability (for instance, if `@postcss-normalize` will be inserted by mixin). For this plugin `AtRule` is much better event.
Hey, I've tried in my css ```postcss @import-normalize "opinionated.css"; ``` However, it is not recognized, and the output remains ```postcss @import-normalize "opinionated.css"; ``` This should be supported since it's in...
I'm in the process of writing some scss code and was delighted to find and use postcss-normalize, however it doesn't seem to handle sass's new `@use` module system. The issue...
Please, create `@types/postcss-normalize` package with types ``` TS7016: Could not find a declaration file for module 'postcss-normalize'. '/Users/doasync/Projects/stellardex/node_modules/postcss-normalize/dist/index.cjs.js' implicitly has an 'any' type. Try `npm install @types/postcss-normalize` if it exists...