cssnano压缩keyframes名的问题

事情是这样的,之前在npm上发了两个包,一个miniprogress和一个mininotice,用的webpack打包,配置如下:

const path = require('path')
const htmlWebpackPlugin = require('html-webpack-plugin')
const webpack = require('webpack')
const ExtractTextPlugin = require("extract-text-webpack-plugin")
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');

const css_extract = new ExtractTextPlugin({
    filename:"notice.css"
});

webpackConfig = {
    entry: path.resolve(__dirname, './src/notice.js'),
    output: {
        path: path.resolve(__dirname, './lib/'),
        filename: 'notice.js',
        publicPath: '/',
        library: "mininotice",
        libraryTarget: "umd"
    },
    module: {
        rules: [{
            test: /\.js$/,
            exclude: /(node_modules|bower_components)/,
            use: {
                loader: 'babel-loader'
            }
        }, {
            test: /\.css$/,
            use: css_extract.extract({
                fallback: "style-loader",
                use: [{
                    loader: "css-loader",
                    options: {
                        modules: true,
                        localIdentName: '[path][name]__[local]--[hash:base64:5]'
                    }
                }, {
                    loader: "postcss-loader"
                }]
            })
        }]
    },
    plugins: [
    new webpack.optimize.UglifyJsPlugin({
        compress: {
            warnings: false
        }
    }),
    new OptimizeCssAssetsPlugin({
        assetNameRegExp: /\.css$/g,
        cssProcessor: require('cssnano')(),
        cssProcessorOptions: { discardComments: {removeAll: true } },
        canPrint: true
    }),
    css_extract
    ]
}
webpack(webpackConfig, function (err, stats) {
    if (err) throw err
        process.stdout.write(stats.toString({
            colors: true,
            modules: false,
            children: false,
            chunks: false,
            chunkModules: false
        }) + '\n\n')
    console.log('pack complete')
})

然后当我在项目中同时使用这两个包的时候,发现动画部分有误,和我当初写的不同,于是打开source查看css源文件,发现我在src中写的@keyframes的名字变成了一个字母a,并且两个包都是a,于是查询OptimizeCssAssetsPlugin相关资料,发现和cssnano的配置有关,默认的是按最优最小压缩的,所以keyframes名也压缩了,导致同时使用这两个包会造成冲突...
大概就是这样,经过文档和查询,下面是解决该冲突的方法:

new OptimizeCssAssetsPlugin({
        assetNameRegExp: /\.css$/g,
        cssProcessor: require('cssnano')({
            reduceIdents: false,// https://github.com/ben-eb/cssnano/issues/247
        }),
        cssProcessorOptions: { discardComments: {removeAll: true } },
        canPrint: true
    }),

配置后附上答案地址,有兴趣的可以去看看,希望能帮到某些人!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 135,248评论 19 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 174,437评论 25 709
  • 你好啊 我看不见你了感觉不太妙 不知道你有没有产生过想知道我去哪了的念头 如果有的话 你知道我从来不会一个人呆在某...
    风在穿行阅读 543评论 0 0
  • 我們終不是一個圈子的人,原來是我不承認。現在,我帶著滿滿的期待,去祝福你。
    HhnJing阅读 237评论 0 0
  • 10月的风,微凉。 街上人来人往,大家都匆忙的走着,没有人感受秋天微弱的气息。 10月,已经是穿两件衣服的月份了,...
    沛恩阅读 870评论 0 1