styimat 1.6.0 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -7
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # styimat
2
- [![Stars](https://gitee.com/wxy6987/styimat/badge/star.svg?theme=white)](https://gitee.com/wxy6987/styimat/stargazers)
3
- [![Forks](https://gitee.com/wxy6987/styimat/badge/fork.svg?theme=white)](https://gitee.com/wxy6987/styimat/members)
2
+
3
+ [![Stars](https://img.shields.io/badge/dynamic/json?label=Stars&query=%24.stargazers_count&url=https%3A%2F%2Fgitee.com%2Fapi%2Fv5%2Frepos%2Fwxy6987%2Fstyimat&color=FFD700&style=yellow)](https://gitee.com/wxy6987/styimat/stargazers)
4
+ [![Forks](https://img.shields.io/badge/dynamic/json?label=Forks&query=%24.forks_count&url=https%3A%2F%2Fgitee.com%2Fapi%2Fv5%2Frepos%2Fwxy6987%2Fstyimat&color=red)](https://gitee.com/wxy6987/styimat/members)
5
+ [![version](https://img.shields.io/npm/v/styimat.svg?color=brightgreen)](https://www.npmjs.com/package/styimat)
6
+ [![license](https://img.shields.io/npm/l/styimat.svg?color=lightgrey)](LICENSE)
7
+ [![size](https://img.shields.io/bundlephobia/minzip/styimat?label=size&color=blue)](https://bundlephobia.com/package/styimat)
8
+
9
+
4
10
 
5
11
  一个功能强大的 CSS 变量预处理库,支持嵌套规则、Lab/LCH 颜色空间转换、Display P3 广色域和增强的数学计算功能。
6
12
 
@@ -546,16 +552,17 @@ $primary-transparent: lab(55 190 0 / 0.8);
546
552
 
547
553
  欢迎贡献代码!请遵循以下步骤:
548
554
 
549
- 1. **Fork 本仓库**
550
- 2. **创建特性分支**
555
+ 1. **Fork 本仓库**
556
+ [![Forks](https://img.shields.io/badge/点击即可Forks-click?color=red)](https://gitee.com/wxy6987/styimat/members)
557
+ 2. **创建特性分支**
551
558
  ```bash
552
559
  git checkout -b feature/AmazingFeature
553
560
  ```
554
- 3. **提交更改**
561
+ 3. **提交更改**
555
562
  ```bash
556
563
  git commit -m 'Add some AmazingFeature'
557
564
  ```
558
- 4. **推送到分支**
565
+ 4. **推送到分支**
559
566
  ```bash
560
567
  git push origin feature/AmazingFeature
561
568
  ```
@@ -571,4 +578,5 @@ MIT © 王小玗 2025
571
578
 
572
579
  ---
573
580
 
574
- **如果这个项目对你有帮助,请给个 [![Star](https://gitee.com/wxy6987/styimat/badge/star.svg?theme=white)](https://gitee.com/wxy6987/styimat)**
581
+ **如果这个项目对你有帮助,请给个
582
+ [![Stars](https://img.shields.io/badge/dynamic/json?label=Stars&query=%24.stargazers_count&url=https%3A%2F%2Fgitee.com%2Fapi%2Fv5%2Frepos%2Fwxy6987%2Fstyimat&color=FFD700&style=yellow)](https://gitee.com/wxy6987/styimat/stargazers)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "styimat",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "一个高效的CSS变量预处理库,支持Lab/LCH颜色空间自动转换、嵌套选择器和Display P3广色域,让现代CSS开发更简洁强大。",
5
5
  "keywords": [
6
6
  "css",
@@ -51,5 +51,8 @@
51
51
  "publish:major": "npm version major --no-git-tag-version && npm publish",
52
52
  "git:auto-commit": "git add . && git commit -m 'chore: auto commit for publish' || echo 'No changes to commit'",
53
53
  "git:auto-tag": "git tag -d v$(node -p \"require('./package.json').version\") 2>/dev/null || true && git tag -a v$(node -p \"require('./package.json').version\") -m 'Version $(node -p \"require('./package.json').version\")' && git push && git push --tags"
54
+ },
55
+ "dependencies": {
56
+ "terser": "^5.44.1"
54
57
  }
55
58
  }