@vue/compiler-sfc
Advanced tools
Comparing version 3.3.4 to 3.3.5
@@ -0,3 +1,4 @@ | ||
import * as lru_cache_min from 'lru-cache/min'; | ||
import * as _babel_types from '@babel/types'; | ||
import { Statement, Expression, TSType, Program, Node, ObjectPattern, TSModuleDeclaration, TSPropertySignature, TSMethodSignature, TSCallSignatureDeclaration, TSFunctionType } from '@babel/types'; | ||
import { Statement, Expression, TSType, Program, CallExpression, Node, ObjectPattern, TSModuleDeclaration, TSPropertySignature, TSMethodSignature, TSCallSignatureDeclaration, TSFunctionType } from '@babel/types'; | ||
import { CompilerOptions, CodegenResult, ParserOptions, RootNode, CompilerError, SourceLocation, ElementNode, BindingMetadata as BindingMetadata$1 } from '@vue/compiler-core'; | ||
@@ -11,2 +12,3 @@ export { BindingMetadata, CompilerError, CompilerOptions, extractIdentifiers, generateCodeFrame, isInDestructureAssignment, isStaticProperty, walkIdentifiers } from '@vue/compiler-core'; | ||
export { default as MagicString } from 'magic-string'; | ||
import TS from 'typescript'; | ||
export { shouldTransform as shouldTransformRef, transform as transformRef, transformAST as transformRefAST } from '@vue/reactivity-transform'; | ||
@@ -232,5 +234,3 @@ | ||
} | ||
export declare const parseCache: Map<string, SFCParseResult> & { | ||
max?: number | undefined; | ||
}; | ||
export declare const parseCache: Map<string, SFCParseResult> | lru_cache_min.LRUCache<string, SFCParseResult, unknown>; | ||
export declare function parse(source: string, { sourceMap, filename, sourceRoot, pad, ignoreEmpty, compiler }?: SFCParseOptions): SFCParseResult; | ||
@@ -380,3 +380,4 @@ | ||
hasDefineModelCall: boolean; | ||
propsIdentifier: string | undefined; | ||
propsCall: CallExpression | undefined; | ||
propsDecl: Node | undefined; | ||
propsRuntimeDecl: Node | undefined; | ||
@@ -390,3 +391,3 @@ propsTypeDecl: Node | undefined; | ||
emitsTypeDecl: Node | undefined; | ||
emitIdentifier: string | undefined; | ||
emitDecl: Node | undefined; | ||
modelDecls: Record<string, ModelDecl>; | ||
@@ -467,3 +468,3 @@ optionsRuntimeDecl: Node | undefined; | ||
*/ | ||
export declare function registerTS(_ts: any): void; | ||
export declare function registerTS(_loadTS: () => typeof TS): void; | ||
/** | ||
@@ -470,0 +471,0 @@ * @private |
{ | ||
"name": "@vue/compiler-sfc", | ||
"version": "3.3.4", | ||
"version": "3.3.5", | ||
"description": "@vue/compiler-sfc", | ||
@@ -35,27 +35,26 @@ "main": "dist/compiler-sfc.cjs.js", | ||
"dependencies": { | ||
"@babel/parser": "^7.20.15", | ||
"@vue/compiler-core": "3.3.4", | ||
"@vue/compiler-dom": "3.3.4", | ||
"@vue/compiler-ssr": "3.3.4", | ||
"@vue/reactivity-transform": "3.3.4", | ||
"@vue/shared": "3.3.4", | ||
"@babel/parser": "^7.23.0", | ||
"@vue/compiler-core": "3.3.5", | ||
"@vue/compiler-dom": "3.3.5", | ||
"@vue/compiler-ssr": "3.3.5", | ||
"@vue/reactivity-transform": "3.3.5", | ||
"@vue/shared": "3.3.5", | ||
"estree-walker": "^2.0.2", | ||
"magic-string": "^0.30.0", | ||
"postcss": "^8.1.10", | ||
"magic-string": "^0.30.5", | ||
"postcss": "^8.4.31", | ||
"source-map-js": "^1.0.2" | ||
}, | ||
"devDependencies": { | ||
"@babel/types": "^7.21.3", | ||
"@types/estree": "^0.0.48", | ||
"@types/lru-cache": "^5.1.0", | ||
"@babel/types": "^7.23.0", | ||
"@types/estree": "^0.0.52", | ||
"@vue/consolidate": "^0.17.3", | ||
"hash-sum": "^2.0.0", | ||
"lru-cache": "^5.1.1", | ||
"lru-cache": "^10.0.1", | ||
"merge-source-map": "^1.1.0", | ||
"minimatch": "^9.0.0", | ||
"postcss-modules": "^4.0.0", | ||
"postcss-selector-parser": "^6.0.4", | ||
"pug": "^3.0.1", | ||
"sass": "^1.26.9" | ||
"minimatch": "^9.0.3", | ||
"postcss-modules": "^4.3.1", | ||
"postcss-selector-parser": "^6.0.13", | ||
"pug": "^3.0.2", | ||
"sass": "^1.69.4" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2225491
11
66665
+ Added@vue/compiler-core@3.3.5(transitive)
+ Added@vue/compiler-dom@3.3.5(transitive)
+ Added@vue/compiler-ssr@3.3.5(transitive)
+ Added@vue/reactivity-transform@3.3.5(transitive)
+ Added@vue/shared@3.3.5(transitive)
- Removed@vue/compiler-core@3.3.4(transitive)
- Removed@vue/compiler-dom@3.3.4(transitive)
- Removed@vue/compiler-ssr@3.3.4(transitive)
- Removed@vue/reactivity-transform@3.3.4(transitive)
- Removed@vue/shared@3.3.4(transitive)
Updated@babel/parser@^7.23.0
Updated@vue/compiler-core@3.3.5
Updated@vue/compiler-dom@3.3.5
Updated@vue/compiler-ssr@3.3.5
Updated@vue/shared@3.3.5
Updatedmagic-string@^0.30.5
Updatedpostcss@^8.4.31