@projectwallace/css-analyzer 5.13.4 → 5.15.0
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.
- package/dist/analyzer.cjs +1 -1
- package/dist/analyzer.cjs.map +1 -1
- package/dist/analyzer.modern.js +1 -1
- package/dist/analyzer.modern.js.map +1 -1
- package/dist/analyzer.module.js +1 -1
- package/dist/analyzer.module.js.map +1 -1
- package/dist/analyzer.umd.js +1 -1
- package/dist/analyzer.umd.js.map +1 -1
- package/dist/index.d.ts +267 -62
- package/package.json +4 -2
- package/readme.md +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectwallace/css-analyzer",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.15.0",
|
|
4
4
|
"author": "Bart Veneman",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"module": "./dist/analyzer.module.js",
|
|
19
19
|
"unpkg": "./dist/analyzer.umd.js",
|
|
20
20
|
"exports": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
21
22
|
"require": "./dist/analyzer.cjs",
|
|
22
23
|
"default": "./dist/analyzer.modern.js"
|
|
23
24
|
},
|
|
@@ -52,8 +53,9 @@
|
|
|
52
53
|
"css-tree": "^2.3.1"
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
56
|
+
"@codecov/vite-plugin": "^0.0.1-beta.8",
|
|
57
|
+
"c8": "^9.1.0",
|
|
55
58
|
"microbundle": "^0.15.1",
|
|
56
|
-
"oxlint": "^0.0.22",
|
|
57
59
|
"uvu": "^0.5.6"
|
|
58
60
|
},
|
|
59
61
|
"mangle": {
|
package/readme.md
CHANGED
|
@@ -415,5 +415,3 @@ const isSpecificityEqual = compareSpecificity(
|
|
|
415
415
|
- [Constyble](https://github.com/projectwallace/constyble) - CSS Complexity linter
|
|
416
416
|
- [Color Sorter](https://github.com/projectwallace/color-sorter) - Sort CSS colors
|
|
417
417
|
by hue, saturation, lightness and opacity
|
|
418
|
-
- [CSS Diff Github Action](https://github.com/projectwallace/css-diff-action) - A
|
|
419
|
-
GitHub action that comments on your PR to tell you how your code quality has changed
|