@lwc/style-compiler 9.0.3 → 9.0.4-alpha.1
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/index.cjs +2 -1
- package/dist/index.js +2 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -880,6 +880,7 @@ function transform(src, id, config = {}) {
|
|
|
880
880
|
catch (error) {
|
|
881
881
|
if (errorRecoveryMode && error instanceof postcss.CssSyntaxError) {
|
|
882
882
|
ctx.errors.push(error);
|
|
883
|
+
// eslint-disable-next-line preserve-caught-error
|
|
883
884
|
throw AggregateError(ctx.errors);
|
|
884
885
|
}
|
|
885
886
|
else {
|
|
@@ -893,5 +894,5 @@ function transform(src, id, config = {}) {
|
|
|
893
894
|
}
|
|
894
895
|
|
|
895
896
|
exports.transform = transform;
|
|
896
|
-
/** version: 9.0.
|
|
897
|
+
/** version: 9.0.4-alpha.1 */
|
|
897
898
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.js
CHANGED
|
@@ -876,6 +876,7 @@ function transform(src, id, config = {}) {
|
|
|
876
876
|
catch (error) {
|
|
877
877
|
if (errorRecoveryMode && error instanceof postcss.CssSyntaxError) {
|
|
878
878
|
ctx.errors.push(error);
|
|
879
|
+
// eslint-disable-next-line preserve-caught-error
|
|
879
880
|
throw AggregateError(ctx.errors);
|
|
880
881
|
}
|
|
881
882
|
else {
|
|
@@ -889,5 +890,5 @@ function transform(src, id, config = {}) {
|
|
|
889
890
|
}
|
|
890
891
|
|
|
891
892
|
export { transform };
|
|
892
|
-
/** version: 9.0.
|
|
893
|
+
/** version: 9.0.4-alpha.1 */
|
|
893
894
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
|
5
5
|
],
|
|
6
6
|
"name": "@lwc/style-compiler",
|
|
7
|
-
"version": "9.0.
|
|
7
|
+
"version": "9.0.4-alpha.1",
|
|
8
8
|
"description": "Transform style sheet to be consumed by the LWC engine",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@lwc/shared": "9.0.
|
|
55
|
-
"postcss": "~8.5.
|
|
54
|
+
"@lwc/shared": "9.0.4-alpha.1",
|
|
55
|
+
"postcss": "~8.5.8",
|
|
56
56
|
"postcss-selector-parser": "~7.1.1",
|
|
57
57
|
"postcss-value-parser": "~4.2.0"
|
|
58
58
|
}
|