@projectwallace/css-analyzer 9.0.0 → 9.1.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/css-analyzer.js +710 -698
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -327,6 +327,7 @@ declare function analyzeInternal<T extends boolean>(css: string, options: Option
|
|
|
327
327
|
ratio: number;
|
|
328
328
|
};
|
|
329
329
|
pseudoClasses: CollectionCount<T>;
|
|
330
|
+
pseudoElements: CollectionCount<T>;
|
|
330
331
|
accessibility: {
|
|
331
332
|
total: number;
|
|
332
333
|
totalUnique: number;
|
|
@@ -339,6 +340,7 @@ declare function analyzeInternal<T extends boolean>(css: string, options: Option
|
|
|
339
340
|
}) & {
|
|
340
341
|
ratio: number;
|
|
341
342
|
};
|
|
343
|
+
attributes: CollectionCount<T>;
|
|
342
344
|
keyframes: CollectionCount<T>;
|
|
343
345
|
prefixed: {
|
|
344
346
|
total: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectwallace/css-analyzer",
|
|
3
3
|
"description": "The best CSS analyzer out there. Check design tokens, complexity, specificity, performance and more.",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.1.0",
|
|
5
5
|
"author": "Bart Veneman",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|