Socket
Socket
Sign inDemoInstall

@vue/compiler-ssr

Package Overview
Dependencies
Maintainers
1
Versions
231
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/compiler-ssr - npm Package Compare versions

Comparing version 3.1.1 to 3.1.2

12

dist/compiler-ssr.cjs.js

@@ -366,3 +366,4 @@ 'use strict';

else {
// real fall-through (e.g. KeepAlive): just render its children.
// real fall-through: Transition / KeepAlive
// just render its children.
processChildren(node.children, context);

@@ -1007,2 +1008,11 @@ }

}
if (node.type === 1 /* ELEMENT */ &&
node.tagType === 1 /* COMPONENT */ &&
(compilerDom.isBuiltInType(node.tag, 'Transition') ||
compilerDom.isBuiltInType(node.tag, 'KeepAlive'))) {
if (hasSingleChild(node)) {
injectFallthroughAttrs(node.children[0]);
}
return;
}
const parent = context.parent;

@@ -1009,0 +1019,0 @@ if (!parent || parent.type !== 0 /* ROOT */) {

6

package.json
{
"name": "@vue/compiler-ssr",
"version": "3.1.1",
"version": "3.1.2",
"description": "@vue/compiler-ssr",

@@ -31,5 +31,5 @@ "main": "dist/compiler-ssr.cjs.js",

"dependencies": {
"@vue/shared": "3.1.1",
"@vue/compiler-dom": "3.1.1"
"@vue/shared": "3.1.2",
"@vue/compiler-dom": "3.1.2"
}
}
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