autoprefixer 10.4.24 → 10.4.25

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.
@@ -0,0 +1,16 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "mcp__acp__Bash",
5
+ "mcp__acp__Edit",
6
+ "mcp__acp__Write",
7
+ "WebFetch(domain:github.com)",
8
+ "Bash(*)",
9
+ "Bash(NODE_V8_COVERAGE=/tmp/cov-test node:*)",
10
+ "Bash(NODE_V8_COVERAGE=./.coverage node ./node_modules/uvu/bin.js:*)",
11
+ "Bash(node scripts/coverage.js:*)",
12
+ "Bash(NODE_V8_COVERAGE=./.coverage node scripts/coverage.js:*)",
13
+ "WebFetch(domain:electrovir.com)"
14
+ ]
15
+ }
16
+ }
@@ -338,6 +338,9 @@ class Gradient extends Value {
338
338
  ) {
339
339
  return false
340
340
  }
341
+ if (string.includes('var(')) {
342
+ return false
343
+ }
341
344
 
342
345
  let params = [[]]
343
346
  for (let i of nodes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoprefixer",
3
- "version": "10.4.24",
3
+ "version": "10.4.25",
4
4
  "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"
@@ -40,9 +40,14 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "browserslist": "^4.28.1",
43
- "caniuse-lite": "^1.0.30001766",
43
+ "caniuse-lite": "^1.0.30001774",
44
44
  "fraction.js": "^5.3.4",
45
45
  "picocolors": "^1.1.1",
46
46
  "postcss-value-parser": "^4.2.0"
47
+ },
48
+ "pnpm": {
49
+ "patchedDependencies": {
50
+ "yargs@17.7.2": "patches/yargs@17.7.2.patch"
51
+ }
47
52
  }
48
53
  }
@@ -0,0 +1,25 @@
1
+ diff --git a/browser.d.ts b/browser.d.ts
2
+ deleted file mode 100644
3
+ index 21f3fc69190b574ab8456514d3da1972afa53973..0000000000000000000000000000000000000000
4
+ diff --git a/package.json b/package.json
5
+ index 389cc6b064b5f888e7f9d718f5440feabdce57ad..c1ae265542ad386fa2214914b0186ade81dd6ee2 100644
6
+ --- a/package.json
7
+ +++ b/package.json
8
+ @@ -20,13 +20,10 @@
9
+ "import": "./browser.mjs",
10
+ "types": "./browser.d.ts"
11
+ },
12
+ - "./yargs": [
13
+ - {
14
+ - "import": "./yargs.mjs",
15
+ - "require": "./yargs"
16
+ - },
17
+ - "./yargs"
18
+ - ]
19
+ + "./yargs": {
20
+ + "require": "./index.cjs",
21
+ + "import": "./yargs.mjs"
22
+ + }
23
+ },
24
+ "type": "module",
25
+ "module": "./index.mjs",