* build: upgrades frontend build to v7 and paragon to v16 * test: update test snapshots Three things happening here: - The implementation of the external link icon in Hyperlink was updated to have an SVG icon instead of font-awesome - The implementation of StatefulButton also changed to use SVG icons instead of font-awesome - Dropdown appears to be setting an onKeyDown handler that it wasn’t before. This is fine.
22 lines
764 B
JavaScript
22 lines
764 B
JavaScript
const glob = require('glob');
|
|
const PurgecssPlugin = require('purgecss-webpack-plugin');
|
|
const { createConfig } = require('@edx/frontend-build');
|
|
|
|
module.exports = createConfig('webpack-prod', {
|
|
plugins: [
|
|
// Scan files for class names and ids and remove unused css
|
|
new PurgecssPlugin({
|
|
paths: [].concat(
|
|
// Scan files in this app
|
|
glob.sync('src/**/*', { nodir: true }),
|
|
// Scan files in any edx frontend-component
|
|
glob.sync('node_modules/@edx/frontend-component*/**/*', { nodir: true }),
|
|
// Scan files in paragon
|
|
glob.sync('node_modules/@edx/paragon/**/*', { nodir: true }),
|
|
),
|
|
// Protect react-css-transition class names
|
|
safelist: [/-enter/, /-appear/, /-exit/],
|
|
}),
|
|
],
|
|
});
|