We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2e720 commit f1b9ea4Copy full SHA for f1b9ea4
packages/generator-chisel/lib/commands/create/creators/app/template/package.chisel-tpl.json
@@ -20,7 +20,7 @@
20
<%= app.projectType == 'wp-with-fe' ? `"chisel-plugin-wordpress": "*",` : '' %>
21
<%= app.projectType == 'fe' ? `"chisel-plugin-static-frontend": "*",` : '' %>
22
"babel-preset-chisel": "*",
23
- "postcss-normalize": "^9.0.0",
+ "@jakub300/postcss-normalize": "^9.0.1",
24
"autoprefixer": "^9.8.0",
25
<% /* required by postcss-normalize for some reason */ %>
26
"browserslist": "^4.12.0",
packages/generator-chisel/lib/commands/create/creators/app/template/postcss.config.js
@@ -3,6 +3,6 @@
3
module.exports = {
4
plugins: [
5
require('autoprefixer')({ grid: 'autoplace' }),
6
- require('postcss-normalize')(),
+ require('@jakub300/postcss-normalize')(),
7
],
8
};
0 commit comments