Socket
Socket
Sign inDemoInstall

@vue/compiler-core

Package Overview
Dependencies
Maintainers
1
Versions
236
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/compiler-core - npm Package Compare versions

Comparing version 3.0.0-alpha.8 to 3.0.0-alpha.9

16

dist/compiler-core.d.ts

@@ -203,2 +203,4 @@ import { generateCodeFrame } from '@vue/shared';

export declare function createSequenceExpression(expressions: SequenceExpression['expressions']): SequenceExpression;
export declare function createSimpleExpression(content: SimpleExpressionNode['content'], isStatic: SimpleExpressionNode['isStatic'], loc?: SourceLocation, isConstant?: boolean): SimpleExpressionNode;

@@ -448,3 +450,3 @@

export declare type JSChildNode = VNodeCall | CallExpression | ObjectExpression | ArrayExpression | ExpressionNode | FunctionExpression | ConditionalExpression | CacheExpression | AssignmentExpression;
export declare type JSChildNode = VNodeCall | CallExpression | ObjectExpression | ArrayExpression | ExpressionNode | FunctionExpression | ConditionalExpression | CacheExpression | AssignmentExpression | SequenceExpression;

@@ -507,3 +509,4 @@ export declare const KEEP_ALIVE: unique symbol;

JS_ASSIGNMENT_EXPRESSION = 24,
JS_RETURN_STATEMENT = 25
JS_SEQUENCE_EXPRESSION = 25,
JS_RETURN_STATEMENT = 26
}

@@ -610,2 +613,7 @@

export declare interface SequenceExpression extends Node {
type: NodeTypes.JS_SEQUENCE_EXPRESSION;
expressions: JSChildNode[];
}
export declare const SET_BLOCK_TRACKING: unique symbol;

@@ -654,3 +662,3 @@

export declare type SSRCodegenNode = BlockStatement | TemplateLiteral | IfStatement | AssignmentExpression | ReturnStatement;
export declare type SSRCodegenNode = BlockStatement | TemplateLiteral | IfStatement | AssignmentExpression | ReturnStatement | SequenceExpression;

@@ -783,2 +791,4 @@ export declare type StructuralDirectiveTransform = (node: ElementNode, dir: DirectiveNode, context: TransformContext) => void | (() => void);

export declare const WITH_CTX: unique symbol;
export declare const WITH_DIRECTIVES: unique symbol;

@@ -785,0 +795,0 @@

4

package.json
{
"name": "@vue/compiler-core",
"version": "3.0.0-alpha.8",
"version": "3.0.0-alpha.9",
"description": "@vue/compiler-core",

@@ -33,3 +33,3 @@ "main": "index.js",

"dependencies": {
"@vue/shared": "3.0.0-alpha.8",
"@vue/shared": "3.0.0-alpha.9",
"@babel/parser": "^7.8.6",

@@ -36,0 +36,0 @@ "@babel/types": "^7.8.6",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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