Skip to content

Commit

Permalink
Bump again
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Jul 31, 2022
1 parent 87d0f18 commit 5b6595c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/optimizers/css/package.json
Expand Up @@ -20,7 +20,7 @@
"parcel": "^2.6.2"
},
"dependencies": {
"@parcel/css": "^1.12.1",
"@parcel/css": "^1.12.2",
"@parcel/diagnostic": "2.6.2",
"@parcel/plugin": "2.6.2",
"@parcel/source-map": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/transformers/css/package.json
Expand Up @@ -20,7 +20,7 @@
"parcel": "^2.6.2"
},
"dependencies": {
"@parcel/css": "^1.12.1",
"@parcel/css": "^1.12.2",
"@parcel/diagnostic": "2.6.2",
"@parcel/plugin": "2.6.2",
"@parcel/source-map": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/transformers/css/src/CSSTransformer.js
Expand Up @@ -46,7 +46,7 @@ export default (new Transformer({
res = transformStyleAttribute({
code,
analyzeDependencies: true,
errorRecovery: config?.errorRecovery,
errorRecovery: config?.errorRecovery || false,
targets,
});
} else {
Expand Down Expand Up @@ -78,7 +78,7 @@ export default (new Transformer({
sourceMap: !!asset.env.sourceMap,
drafts: config?.drafts,
pseudoClasses: config?.pseudoClasses,
errorRecovery: config?.errorRecovery,
errorRecovery: config?.errorRecovery || false,
targets,
});
}
Expand Down

0 comments on commit 5b6595c

Please sign in to comment.