@vue/compiler-sfc 3.4.7 → 3.4.9
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/compiler-sfc.cjs.js
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @vue/compiler-sfc v3.4.9
|
|
3
|
+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
|
+
* @license MIT
|
|
5
|
+
**/
|
|
1
6
|
'use strict';
|
|
2
7
|
|
|
3
8
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -20594,7 +20599,7 @@ function isStaticNode(node) {
|
|
|
20594
20599
|
return false;
|
|
20595
20600
|
}
|
|
20596
20601
|
|
|
20597
|
-
const version = "3.4.
|
|
20602
|
+
const version = "3.4.9";
|
|
20598
20603
|
const parseCache = parseCache$1;
|
|
20599
20604
|
const errorMessages = {
|
|
20600
20605
|
...CompilerDOM.errorMessages,
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @vue/compiler-sfc v3.4.9
|
|
3
|
+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
|
+
* @license MIT
|
|
5
|
+
**/
|
|
1
6
|
function makeMap(str, expectsLowerCase) {
|
|
2
7
|
const set = new Set(str.split(","));
|
|
3
8
|
return expectsLowerCase ? (val) => set.has(val.toLowerCase()) : (val) => set.has(val);
|
|
@@ -48629,7 +48634,7 @@ var __spreadValues = (a, b) => {
|
|
|
48629
48634
|
}
|
|
48630
48635
|
return a;
|
|
48631
48636
|
};
|
|
48632
|
-
const version = "3.4.
|
|
48637
|
+
const version = "3.4.9";
|
|
48633
48638
|
const parseCache = parseCache$1;
|
|
48634
48639
|
const errorMessages = __spreadValues(__spreadValues({}, errorMessages$1), DOMErrorMessages);
|
|
48635
48640
|
const walk = walk$2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/compiler-sfc",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.9",
|
|
4
4
|
"description": "@vue/compiler-sfc",
|
|
5
5
|
"main": "dist/compiler-sfc.cjs.js",
|
|
6
6
|
"module": "dist/compiler-sfc.esm-browser.js",
|
|
@@ -8,6 +8,16 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/compiler-sfc.d.ts",
|
|
14
|
+
"node": "./dist/compiler-sfc.cjs.js",
|
|
15
|
+
"module": "./dist/compiler-sfc.esm-browser.js",
|
|
16
|
+
"import": "./dist/compiler-sfc.esm-browser.js",
|
|
17
|
+
"require": "./dist/compiler-sfc.cjs.js"
|
|
18
|
+
},
|
|
19
|
+
"./*": "./*"
|
|
20
|
+
},
|
|
11
21
|
"buildOptions": {
|
|
12
22
|
"name": "VueCompilerSFC",
|
|
13
23
|
"formats": [
|
|
@@ -37,10 +47,10 @@
|
|
|
37
47
|
"magic-string": "^0.30.5",
|
|
38
48
|
"postcss": "^8.4.32",
|
|
39
49
|
"source-map-js": "^1.0.2",
|
|
40
|
-
"@vue/compiler-core": "3.4.
|
|
41
|
-
"@vue/compiler-
|
|
42
|
-
"@vue/
|
|
43
|
-
"@vue/
|
|
50
|
+
"@vue/compiler-core": "3.4.9",
|
|
51
|
+
"@vue/compiler-dom": "3.4.9",
|
|
52
|
+
"@vue/compiler-ssr": "3.4.9",
|
|
53
|
+
"@vue/shared": "3.4.9"
|
|
44
54
|
},
|
|
45
55
|
"devDependencies": {
|
|
46
56
|
"@babel/types": "^7.23.6",
|