Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@volar/vue-language-core

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@volar/vue-language-core - npm Package Compare versions

Comparing version 1.0.20 to 1.0.21

9

out/plugins/vue-template-html.js

@@ -62,2 +62,5 @@ const plugin = ({ modules }) => {

}
if (node.exp && withinChangeRange(node.exp.loc) && node.name === 'for') { // #2266
return false;
}
if (node.arg && !tryUpdateNode(node.arg)) {

@@ -85,7 +88,7 @@ return false;

else if (node.type === 9 /* CompilerDOM.NodeTypes.IF */) {
for (const branche of node.branches) {
if (branche.condition && !tryUpdateNode(branche.condition)) {
for (const branch of node.branches) {
if (branch.condition && !tryUpdateNode(branch.condition)) {
return false;
}
for (const child of branche.children) {
for (const child of branch.children) {
if (!tryUpdateNode(child)) {

@@ -92,0 +95,0 @@ return false;

{
"name": "@volar/vue-language-core",
"version": "1.0.20",
"version": "1.0.21",
"main": "out/index.js",

@@ -16,4 +16,4 @@ "license": "MIT",

"dependencies": {
"@volar/language-core": "1.0.20",
"@volar/source-map": "1.0.20",
"@volar/language-core": "1.0.21",
"@volar/source-map": "1.0.21",
"@vue/compiler-dom": "^3.2.45",

@@ -29,3 +29,3 @@ "@vue/compiler-sfc": "^3.2.45",

},
"gitHead": "e00f068e812677791c93efe9cf20995764350ec6"
"gitHead": "72332760759e06eed18e62026185cbad70250367"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc