@vue/compiler-core 3.3.2 → 3.3.3

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.
@@ -2832,8 +2832,7 @@ function processIf(node, dir, context, processCodegen) {
2832
2832
  while (i-- >= -1) {
2833
2833
  const sibling = siblings[i];
2834
2834
  if (sibling && sibling.type === 3) {
2835
- context.removeNode(sibling);
2836
- process.env.NODE_ENV !== "production" && comments.unshift(sibling);
2835
+ context.removeNode(sibling)(process.env.NODE_ENV !== "production") && comments.unshift(sibling);
2837
2836
  continue;
2838
2837
  }
2839
2838
  if (sibling && sibling.type === 2 && !sibling.content.trim().length) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/compiler-core",
3
- "version": "3.3.2",
3
+ "version": "3.3.3",
4
4
  "description": "@vue/compiler-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/compiler-core.esm-bundler.js",
@@ -33,7 +33,7 @@
33
33
  "homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
34
34
  "dependencies": {
35
35
  "@babel/parser": "^7.21.3",
36
- "@vue/shared": "3.3.2",
36
+ "@vue/shared": "3.3.3",
37
37
  "estree-walker": "^2.0.2",
38
38
  "source-map-js": "^1.0.2"
39
39
  },