npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cssunit-loader

v1.0.2

Published

用户可自定义规则进行css属性值转换的webpack Loader

Downloads

2

Readme

cssUnit-loader

用户可自定义规则进行css属性值转换的webpack Loader,您可以传入规则,对css属性值进行个性化转换。

安装

npm install --save-dev cssunit-loader

用法

webpack.config.js

cssunit-loader输入的是css文件,如使用sass/less等预处理语言,需先使用sass-loader/less-loader进行转换

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          {
            loader: 'cssunitloader',
            options: {},
          },
        ],
      },
    ],
  },
};

Options

| 名称 | 类型 | 默认值 | 描述 | | :-------------------------------------: | :--------: | :-----------: | ------------------------------------- | | unit | {String} | 'px' | 需要转化的css单位 | | rule | {Function} | 见下 | 自定义转化规则函数 | | exceptSelect | {String} | '.except' | 在转化时忽略的css类 | | exceptProperty | {String} | 'background' | 如css属性名包含此字符串,则不进行转化 | | exceptText | {String} | '--doc-scale' | 如css值包含此字符串,则不进行转化 |

unit

类型: String

默认值: 'px'

可自定义需要转化的css单位,包括但不限于px、rem。

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          {
            loader: 'cssunitloader',
            options: {
              unit: 'rem',
            },
          },
        ],
      },
    ],
  },
};

rule

类型: Function

默认值:

(value) => {
  return `calc(${value}px * var(--doc-scale))`;
}

自定义转化规则函数,用户可随意定义,传入一个函数,参数为匹配的属性值数字部分,需return一个结果。

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          {
            loader: 'cssunitloader',
            options: {
              // value 即是匹配的属性值数字部分,比如10px,value代表的是10
              rule: (value) => { 
                return `calc(${value}px * var(--doc-scale))`;
              },
            },
          },
        ],
      },
    ],
  },
};

示例

// 转化前
.main{
	width: 38px;
}

//转化后
.main{
	width: calc(38px * var(--doc-scale));
}

exceptSelect

类型: String

默认值: '.except'

在进行转化时,如果css中含有这个选择器,则不进行替换。用户可自定义,为保证匹配准确性,此类名后必须是如下形式

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          {
            loader: 'cssunitloader',
            options: {
              exceptSelect: '.except',
            },
          },
        ],
      },
    ],
  },
};

示例

// 转化前
.except.main{ // .expect必须紧跟.
	width: 10px;
}

//转化后
.except.main{
	width: 10px;
}

exceptProperty

类型: String

默认值: 'background'

在进行转化时,如果css属性名中含有此字符,则不进行替换,用户可自定义,具体可看示例。

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          {
            loader: 'cssunitloader',
            options: {
              exceptProperty: 'background',
            },
          },
        ],
      },
    ],
  },
};

示例

// 转化前,属性名只要包含'background'就不转化
.main{
	background: url('');
    background-size: 100% 100%;
    background-position: 100px 100px;
}

//转化后
.main{
	background: url('');
    background-size: 100% 100%;
    background-position: 100px 100px;
}

exceptText

类型: String

默认值: '--doc-scale'

在进行转化时,如果css属性值中含有此字符,则不进行替换,用户可自定义,具体可看示例。

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          {
            loader: 'cssunitloader',
            options: {
              unit: '--doc-scale',
            },
          },
        ],
      },
    ],
  },
};

示例

// 转化前,属性值只要包含'--doc-scale'就不转化
.main{
	width: calc(38px * var(--doc-scale));
}

//转化后
.main{
	width: calc(38px * var(--doc-scale));
}

忽略转换规则

如果不希望对结果进行转化,可参照如下操作,此为本loader内置属性,暂不可自定义。

示例

// 转化前,属性值用单引号包裹,转化后输出不带单引号部分
.main{
	width: '38px';
}

//转化后
.main{
	width: 38px;
}