postcss-calc
Advanced tools
Comparing version 10.0.1 to 10.0.2
{ | ||
"name": "postcss-calc", | ||
"version": "10.0.1", | ||
"version": "10.0.2", | ||
"description": "PostCSS plugin to reduce calc()", | ||
@@ -24,8 +24,2 @@ "keywords": [ | ||
], | ||
"scripts": { | ||
"prepare": "pnpm run build && tsc", | ||
"build": "jison ./parser.jison -o src/parser.js", | ||
"lint": "eslint . && tsc", | ||
"test": "node --test" | ||
}, | ||
"author": "Andy Jansson", | ||
@@ -37,7 +31,7 @@ "license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^22.1.0", | ||
"eslint": "^9.8.0", | ||
"@types/node": "^22.4.0", | ||
"eslint": "^9.9.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"jison-gho": "0.6.1-216", | ||
"postcss": "^8.4.40", | ||
"postcss": "^8.4.41", | ||
"prettier": "^3.3.3", | ||
@@ -47,3 +41,3 @@ "typescript": "~5.5.4" | ||
"dependencies": { | ||
"postcss-selector-parser": "^6.1.1", | ||
"postcss-selector-parser": "^6.1.2", | ||
"postcss-value-parser": "^4.2.0" | ||
@@ -53,3 +47,8 @@ }, | ||
"postcss": "^8.4.38" | ||
}, | ||
"scripts": { | ||
"build": "jison ./parser.jison -o src/parser.js", | ||
"lint": "eslint . && tsc", | ||
"test": "node --test" | ||
} | ||
} | ||
} |
@@ -20,5 +20,25 @@ 'use strict'; | ||
case 'VhValue': | ||
case 'SvhValue': | ||
case 'LvhValue': | ||
case 'DvhValue': | ||
case 'VwValue': | ||
case 'SvwValue': | ||
case 'LvwValue': | ||
case 'DvwValue': | ||
case 'VminValue': | ||
case 'SvminValue': | ||
case 'LvminValue': | ||
case 'DvminValue': | ||
case 'VmaxValue': | ||
case 'SvmaxValue': | ||
case 'LvmaxValue': | ||
case 'DvmaxValue': | ||
case 'VbValue': | ||
case 'SvbValue': | ||
case 'LvbValue': | ||
case 'DvbValue': | ||
case 'ViValue': | ||
case 'SviValue': | ||
case 'LviValue': | ||
case 'DviValue': | ||
case 'CqwValue': | ||
@@ -25,0 +45,0 @@ case 'CqhValue': |
@@ -26,5 +26,25 @@ export interface MathExpression { | ||
| 'VhValue' | ||
| 'SvhValue' | ||
| 'LvhValue' | ||
| 'DvhValue' | ||
| 'VwValue' | ||
| 'SvwValue' | ||
| 'LvwValue' | ||
| 'DvwValue' | ||
| 'VminValue' | ||
| 'SvminValue' | ||
| 'LvminValue' | ||
| 'DvminValue' | ||
| 'VmaxValue' | ||
| 'SvmaxValue' | ||
| 'LvmaxValue' | ||
| 'DvmaxValue' | ||
| 'VbValue' | ||
| 'SvbValue' | ||
| 'LvbValue' | ||
| 'DvbValue' | ||
| 'ViValue' | ||
| 'SviValue' | ||
| 'LviValue' | ||
| 'DviValue' | ||
| 'CqwValue' | ||
@@ -31,0 +51,0 @@ | 'CqhValue' |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
161339
4331