optimize-css-assets-webpack-plugin icon indicating copy to clipboard operation
optimize-css-assets-webpack-plugin copied to clipboard

A Webpack plugin to optimize \ minimize CSS assets.

Results 43 optimize-css-assets-webpack-plugin issues
Sort by recently updated
recently updated
newest added

Bumps [node-notifier](https://github.com/mikaelbr/node-notifier) from 8.0.0 to 8.0.2. Changelog Sourced from node-notifier's changelog. v8.0.2 Fixes potential security issue with non-escaping input parameters for notify-send. Commits 3420977 v8.0.2 a141580 patch: fixes security issue...

dependencies

This PR is suposed to resolve this: [How can we set source map target file name to a different path?](https://github.com/NMFR/optimize-css-assets-webpack-plugin/issues/91)

I am going to setup my own scaffold,and here is the project repo [https://github.com/Kilims/typescript_antd_antdMobile](https://github.com/Kilims/typescript_antd_antdMobile) while running with `yarn run start`, it could work perfectly but when i go with `yarn...

I am experiencing an issue with webpack that turns out to be quite problematic when combined with a CDN and SRI. I am unsure if the issue is actually on...

**os**: macos Mojave 10.14.2 **env**: node v8.15.0 **version**(optimize-css-assets-webpack-plugin): 3.2.1 **error**: ![image](https://user-images.githubusercontent.com/4916726/60407406-362d3e80-9bed-11e9-961f-c162d37bd09c.png) **sourceCode**: ``` .tab-layer { width: 100%; height: calc(~'100vh - 0.97REM'); display: flex; flex-direction: column; position: relative; } ```

![image](https://user-images.githubusercontent.com/20222085/72402918-83d55700-378b-11ea-9d1b-34fd5b6bf0f7.png) ![image](https://user-images.githubusercontent.com/20222085/72402932-8d5ebf00-378b-11ea-9b19-44e03d43ac5f.png)

Most open source package exposes a file CHANGELOGS.md that contains the last modification between different version. I recommend this feature to help me as a developer using this package as...

I'm on webpack 4 and have tried both options below: ```javascript optimization: { minimizer: [ new UglifyJsPlugin({uglifyOptions: cfg.js.uglify}), new OptimizeCSSAssetsPlugin({}), ] ``` and this as well: ```javascript optimization: { minimizer:...

In my webpack config file. I'm using this config ``` new OptimizeCSSAssetsPlugin({ cssProcessorOptions: { safe: true, discardComments: { removeAll: true, }, }, }) ``` When run webpack command I'm still...

Migrating a build to Webpack 4 and the new extract css methodology. I'm up and running so thanks to you for your efforts with this plugin. I have always made...