@vue/compiler-sfc 3.5.10 → 3.5.11

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/compiler-sfc v3.5.10
2
+ * @vue/compiler-sfc v3.5.11
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -19856,7 +19856,7 @@ function transformDestructuredProps(ctx, vueImportAliases) {
19856
19856
  estreeWalker.walk(ast, {
19857
19857
  enter(node, parent) {
19858
19858
  parent && parentStack.push(parent);
19859
- if (parent && parent.type.startsWith("TS") && parent.type !== "TSAsExpression" && parent.type !== "TSNonNullExpression" && parent.type !== "TSTypeAssertion") {
19859
+ if (parent && parent.type.startsWith("TS") && parent.type !== "TSAsExpression" && parent.type !== "TSNonNullExpression" && parent.type !== "TSSatisfiesExpression" && parent.type !== "TSTypeAssertion") {
19860
19860
  return this.skip();
19861
19861
  }
19862
19862
  checkUsage(node, "watch", vueImportAliases.watch);
@@ -20900,7 +20900,7 @@ function isStaticNode(node) {
20900
20900
  return false;
20901
20901
  }
20902
20902
 
20903
- const version = "3.5.10";
20903
+ const version = "3.5.11";
20904
20904
  const parseCache = parseCache$1;
20905
20905
  const errorMessages = {
20906
20906
  ...CompilerDOM.errorMessages,
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/compiler-sfc v3.5.10
2
+ * @vue/compiler-sfc v3.5.11
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -50818,7 +50818,7 @@ function transformDestructuredProps(ctx, vueImportAliases) {
50818
50818
  walk$2(ast, {
50819
50819
  enter(node, parent) {
50820
50820
  parent && parentStack.push(parent);
50821
- if (parent && parent.type.startsWith("TS") && parent.type !== "TSAsExpression" && parent.type !== "TSNonNullExpression" && parent.type !== "TSTypeAssertion") {
50821
+ if (parent && parent.type.startsWith("TS") && parent.type !== "TSAsExpression" && parent.type !== "TSNonNullExpression" && parent.type !== "TSSatisfiesExpression" && parent.type !== "TSTypeAssertion") {
50822
50822
  return this.skip();
50823
50823
  }
50824
50824
  checkUsage(node, "watch", vueImportAliases.watch);
@@ -51892,7 +51892,7 @@ var __spreadValues = (a, b) => {
51892
51892
  }
51893
51893
  return a;
51894
51894
  };
51895
- const version = "3.5.10";
51895
+ const version = "3.5.11";
51896
51896
  const parseCache = parseCache$1;
51897
51897
  const errorMessages = __spreadValues(__spreadValues({}, errorMessages$1), DOMErrorMessages);
51898
51898
  const walk = walk$2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/compiler-sfc",
3
- "version": "3.5.10",
3
+ "version": "3.5.11",
4
4
  "description": "@vue/compiler-sfc",
5
5
  "main": "dist/compiler-sfc.cjs.js",
6
6
  "module": "dist/compiler-sfc.esm-browser.js",
@@ -47,10 +47,10 @@
47
47
  "magic-string": "^0.30.11",
48
48
  "postcss": "^8.4.47",
49
49
  "source-map-js": "^1.2.0",
50
- "@vue/compiler-core": "3.5.10",
51
- "@vue/compiler-dom": "3.5.10",
52
- "@vue/compiler-ssr": "3.5.10",
53
- "@vue/shared": "3.5.10"
50
+ "@vue/compiler-core": "3.5.11",
51
+ "@vue/compiler-dom": "3.5.11",
52
+ "@vue/compiler-ssr": "3.5.11",
53
+ "@vue/shared": "3.5.11"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@babel/types": "^7.25.2",
@@ -62,6 +62,6 @@
62
62
  "postcss-modules": "^6.0.0",
63
63
  "postcss-selector-parser": "^6.1.2",
64
64
  "pug": "^3.0.3",
65
- "sass": "^1.78.0"
65
+ "sass": "^1.79.4"
66
66
  }
67
67
  }