Skip to content

Commit f1b9ea4

Browse files
committed
Change postcss-normalize package
1 parent 4a2e720 commit f1b9ea4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/generator-chisel/lib/commands/create/creators/app/template/package.chisel-tpl.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<%= app.projectType == 'wp-with-fe' ? `"chisel-plugin-wordpress": "*",` : '' %>
2121
<%= app.projectType == 'fe' ? `"chisel-plugin-static-frontend": "*",` : '' %>
2222
"babel-preset-chisel": "*",
23-
"postcss-normalize": "^9.0.0",
23+
"@jakub300/postcss-normalize": "^9.0.1",
2424
"autoprefixer": "^9.8.0",
2525
<% /* required by postcss-normalize for some reason */ %>
2626
"browserslist": "^4.12.0",

packages/generator-chisel/lib/commands/create/creators/app/template/postcss.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
module.exports = {
44
plugins: [
55
require('autoprefixer')({ grid: 'autoplace' }),
6-
require('postcss-normalize')(),
6+
require('@jakub300/postcss-normalize')(),
77
],
88
};

0 commit comments

Comments
 (0)