Skip to content

Commit 20c2b85

Browse files
chore(deps): update dependency postcss to v8.2.13 [security] (#994)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Sarah Dayan <[email protected]>
1 parent f0c917d commit 20c2b85

File tree

4 files changed

+553
-85
lines changed

4 files changed

+553
-85
lines changed

bundlesize.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
{
3636
"path": "packages/autocomplete-theme-classic/dist/theme.min.css",
37-
"maxSize": "4.25 kB"
37+
"maxSize": "4.5 kB"
3838
}
3939
]
4040
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@babel/preset-env": "7.21.4",
3030
"@babel/preset-react": "7.18.6",
3131
"@babel/preset-typescript": "7.21.4",
32-
"@csstools/postcss-sass": "4.0.0",
32+
"@csstools/postcss-sass": "5.0.1",
3333
"@rollup/plugin-json": "4.1.0",
3434
"@rollup/plugin-node-resolve": "11.2.1",
3535
"@rollup/plugin-replace": "2.4.2",
@@ -67,10 +67,10 @@
6767
"jest-diff": "26.6.2",
6868
"jest-watch-typeahead": "0.6.5",
6969
"lerna": "3.22.1",
70-
"postcss": "8.1.8",
70+
"postcss": "8.4.21",
7171
"postcss-color-rgb": "2.0.0",
72-
"postcss-comment": "2.0.0",
73-
"postcss-preset-env": "6.7.1",
72+
"postcss-preset-env": "8.3.0",
73+
"postcss-scss": "4.0.6",
7474
"prettier": "2.8.7",
7575
"rollup": "2.79.1",
7676
"rollup-plugin-babel": "4.4.0",

postcss.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import sass from '@csstools/postcss-sass';
22
import autoprefixer from 'autoprefixer';
33
import cssnano from 'cssnano';
44
import color from 'postcss-color-rgb';
5-
import comment from 'postcss-comment';
5+
import parser from 'postcss-scss';
66
import presetEnv from 'postcss-preset-env';
77

88
const MINIFIED = process.env.MINIFIED;
@@ -18,6 +18,6 @@ const plugins = [
1818
];
1919

2020
export default {
21-
parser: comment,
21+
parser,
2222
plugins: MINIFIED ? [...plugins, cssnano] : plugins,
2323
};

0 commit comments

Comments
 (0)