@parcel/transformer-postcss 2.10.2 → 2.11.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/lib/PostCSSTransformer.js +1 -2
- package/lib/constants.js +1 -2
- package/package.json +7 -7
|
@@ -67,7 +67,7 @@ const COMPOSES_RE = /composes:.+from\s*("|').*("|')\s*;?/;
|
|
|
67
67
|
const FROM_IMPORT_RE = /.+from\s*(?:"|')(.*)(?:"|')\s*;?/;
|
|
68
68
|
const LEGACY_MODULE_RE = /@value|:export|(:global|:local|:import)(?!\s*\()/i;
|
|
69
69
|
const MODULE_BY_NAME_RE = /\.module\./;
|
|
70
|
-
var _default = new (_plugin().Transformer)({
|
|
70
|
+
var _default = exports.default = new (_plugin().Transformer)({
|
|
71
71
|
loadConfig({
|
|
72
72
|
config,
|
|
73
73
|
options,
|
|
@@ -303,7 +303,6 @@ var _default = new (_plugin().Transformer)({
|
|
|
303
303
|
};
|
|
304
304
|
}
|
|
305
305
|
});
|
|
306
|
-
exports.default = _default;
|
|
307
306
|
async function createLoader(asset, resolve, options) {
|
|
308
307
|
let {
|
|
309
308
|
default: FileSystemLoader
|
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parcel/transformer-postcss",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"source": "src/PostCSSTransformer.js",
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">= 12.0.0",
|
|
20
|
-
"parcel": "^2.
|
|
20
|
+
"parcel": "^2.11.0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@parcel/diagnostic": "2.
|
|
24
|
-
"@parcel/plugin": "2.
|
|
25
|
-
"@parcel/rust": "2.
|
|
26
|
-
"@parcel/utils": "2.
|
|
23
|
+
"@parcel/diagnostic": "2.11.0",
|
|
24
|
+
"@parcel/plugin": "2.11.0",
|
|
25
|
+
"@parcel/rust": "2.11.0",
|
|
26
|
+
"@parcel/utils": "2.11.0",
|
|
27
27
|
"clone": "^2.1.1",
|
|
28
28
|
"nullthrows": "^1.1.1",
|
|
29
29
|
"postcss-value-parser": "^4.2.0",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"postcss": "^8.4.5",
|
|
34
34
|
"postcss-modules": "^4.3.1"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "f8076f1644cabc944695b5ec82602c8ae32bcf21"
|
|
37
37
|
}
|