@vue/compiler-core 3.2.34 → 3.2.35
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.
|
@@ -3258,7 +3258,7 @@ function isReferenced(node, parent, grandparent) {
|
|
|
3258
3258
|
// no: export { NODE as foo } from "foo";
|
|
3259
3259
|
case 'ExportSpecifier':
|
|
3260
3260
|
// @ts-expect-error
|
|
3261
|
-
if (grandparent
|
|
3261
|
+
if (grandparent === null || grandparent === void 0 ? void 0 : grandparent.source) {
|
|
3262
3262
|
return false;
|
|
3263
3263
|
}
|
|
3264
3264
|
return parent.local === node;
|
|
@@ -3195,7 +3195,7 @@ function isReferenced(node, parent, grandparent) {
|
|
|
3195
3195
|
// no: export { NODE as foo } from "foo";
|
|
3196
3196
|
case 'ExportSpecifier':
|
|
3197
3197
|
// @ts-expect-error
|
|
3198
|
-
if (grandparent
|
|
3198
|
+
if (grandparent === null || grandparent === void 0 ? void 0 : grandparent.source) {
|
|
3199
3199
|
return false;
|
|
3200
3200
|
}
|
|
3201
3201
|
return parent.local === node;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/compiler-core",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.35",
|
|
4
4
|
"description": "@vue/compiler-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/compiler-core.esm-bundler.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@vue/shared": "3.2.
|
|
35
|
+
"@vue/shared": "3.2.35",
|
|
36
36
|
"@babel/parser": "^7.16.4",
|
|
37
37
|
"estree-walker": "^2.0.2",
|
|
38
38
|
"source-map": "^0.6.1"
|