postcss 8.4.49 → 8.5.10
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/LICENSE +1 -1
- package/README.md +8 -8
- package/lib/at-rule.d.ts +9 -10
- package/lib/comment.d.ts +7 -8
- package/lib/container.d.ts +48 -53
- package/lib/container.js +10 -10
- package/lib/css-syntax-error.d.ts +0 -1
- package/lib/declaration.d.ts +9 -10
- package/lib/declaration.js +4 -4
- package/lib/document.d.ts +0 -1
- package/lib/fromJSON.d.ts +1 -1
- package/lib/input.d.ts +49 -20
- package/lib/input.js +51 -26
- package/lib/lazy-result.d.ts +43 -44
- package/lib/lazy-result.js +32 -32
- package/lib/list.d.ts +1 -1
- package/lib/map-generator.js +9 -1
- package/lib/no-work-result.d.ts +5 -6
- package/lib/no-work-result.js +53 -54
- package/lib/node.d.ts +25 -11
- package/lib/node.js +54 -30
- package/lib/parse.d.ts +1 -1
- package/lib/parser.js +4 -2
- package/lib/postcss.d.mts +31 -34
- package/lib/postcss.d.ts +7 -4
- package/lib/previous-map.d.ts +0 -1
- package/lib/previous-map.js +2 -1
- package/lib/processor.d.ts +0 -1
- package/lib/processor.js +1 -1
- package/lib/result.d.ts +10 -11
- package/lib/result.js +5 -5
- package/lib/root.d.ts +0 -1
- package/lib/rule.d.ts +21 -21
- package/lib/rule.js +6 -6
- package/lib/stringifier.d.ts +2 -3
- package/lib/stringifier.js +25 -8
- package/lib/stringify.d.ts +1 -1
- package/lib/warning.d.ts +0 -1
- package/package.json +46 -46
package/lib/stringify.d.ts
CHANGED
package/lib/warning.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,52 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postcss",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.5.10",
|
|
4
4
|
"description": "Tool for transforming styles with JS plugins",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"css",
|
|
7
|
+
"manipulation",
|
|
8
|
+
"parser",
|
|
9
|
+
"postcss",
|
|
10
|
+
"preprocessor",
|
|
11
|
+
"rework",
|
|
12
|
+
"source map",
|
|
13
|
+
"transform",
|
|
14
|
+
"transpiler"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://postcss.org/",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/postcss/postcss/issues"
|
|
7
19
|
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"author": "Andrey Sitnik <andrey@sitnik.es>",
|
|
22
|
+
"repository": "postcss/postcss",
|
|
23
|
+
"funding": [
|
|
24
|
+
{
|
|
25
|
+
"type": "opencollective",
|
|
26
|
+
"url": "https://opencollective.com/postcss/"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"type": "tidelift",
|
|
30
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "github",
|
|
34
|
+
"url": "https://github.com/sponsors/ai"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"main": "./lib/postcss.js",
|
|
38
|
+
"browser": {
|
|
39
|
+
"./lib/terminal-highlight": false,
|
|
40
|
+
"source-map-js": false,
|
|
41
|
+
"path": false,
|
|
42
|
+
"url": false,
|
|
43
|
+
"fs": false
|
|
44
|
+
},
|
|
45
|
+
"types": "./lib/postcss.d.ts",
|
|
8
46
|
"exports": {
|
|
9
47
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
48
|
+
"import": "./lib/postcss.mjs",
|
|
49
|
+
"require": "./lib/postcss.js"
|
|
12
50
|
},
|
|
13
51
|
"./lib/at-rule": "./lib/at-rule.js",
|
|
14
52
|
"./lib/comment": "./lib/comment.js",
|
|
@@ -39,50 +77,12 @@
|
|
|
39
77
|
"./lib/warning": "./lib/warning.js",
|
|
40
78
|
"./package.json": "./package.json"
|
|
41
79
|
},
|
|
42
|
-
"main": "./lib/postcss.js",
|
|
43
|
-
"types": "./lib/postcss.d.ts",
|
|
44
|
-
"keywords": [
|
|
45
|
-
"css",
|
|
46
|
-
"postcss",
|
|
47
|
-
"rework",
|
|
48
|
-
"preprocessor",
|
|
49
|
-
"parser",
|
|
50
|
-
"source map",
|
|
51
|
-
"transform",
|
|
52
|
-
"manipulation",
|
|
53
|
-
"transpiler"
|
|
54
|
-
],
|
|
55
|
-
"funding": [
|
|
56
|
-
{
|
|
57
|
-
"type": "opencollective",
|
|
58
|
-
"url": "https://opencollective.com/postcss/"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"type": "tidelift",
|
|
62
|
-
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"type": "github",
|
|
66
|
-
"url": "https://github.com/sponsors/ai"
|
|
67
|
-
}
|
|
68
|
-
],
|
|
69
|
-
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
|
70
|
-
"license": "MIT",
|
|
71
|
-
"homepage": "https://postcss.org/",
|
|
72
|
-
"repository": "postcss/postcss",
|
|
73
|
-
"bugs": {
|
|
74
|
-
"url": "https://github.com/postcss/postcss/issues"
|
|
75
|
-
},
|
|
76
80
|
"dependencies": {
|
|
77
|
-
"nanoid": "^3.3.
|
|
81
|
+
"nanoid": "^3.3.11",
|
|
78
82
|
"picocolors": "^1.1.1",
|
|
79
83
|
"source-map-js": "^1.2.1"
|
|
80
84
|
},
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"source-map-js": false,
|
|
84
|
-
"path": false,
|
|
85
|
-
"url": false,
|
|
86
|
-
"fs": false
|
|
85
|
+
"engines": {
|
|
86
|
+
"node": "^10 || ^12 || >=14"
|
|
87
87
|
}
|
|
88
88
|
}
|