Skip to content

Commit

Permalink
chore: Remove postcss from demo pages build (#551)
Browse files Browse the repository at this point in the history
  • Loading branch information
just-boris authored Dec 5, 2022
1 parent 59a1797 commit af152c5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 66 deletions.
51 changes: 0 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.0",
"axe-core": "^4.4.1",
"babel-jest": "^28.1.0",
"change-case": "^4.1.2",
Expand Down Expand Up @@ -110,9 +109,6 @@
"mississippi": "^4.0.0",
"mockdate": "^3.0.5",
"please-upgrade-node": "^3.2.0",
"postcss": "^8.4.5",
"postcss-custom-properties": "^12.0.0",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"qs": "^6.10.1",
"react": "^16.14.0",
Expand Down
11 changes: 0 additions & 11 deletions pages/webpack.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');

const autoprefixer = require('autoprefixer');
const postCSSCustomProperties = require('postcss-custom-properties');

const isProd = process.env.NODE_ENV === 'production';
const isLocal = !process.env.CI;

Expand Down Expand Up @@ -74,14 +71,6 @@ module.exports = ({
loader: 'css-loader',
options: { modules: true, esModule: true },
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [autoprefixer(), postCSSCustomProperties()],
},
},
},
'sass-loader',
],
},
Expand Down

0 comments on commit af152c5

Please sign in to comment.