New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@lwc/ssr-compiler

Package Overview
Dependencies
Maintainers
0
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lwc/ssr-compiler - npm Package Compare versions

Comparing version 8.12.2 to 8.12.3

1

dist/compile-js/catalog-tmpls.d.ts

@@ -9,1 +9,2 @@ import type { NodePath } from 'estree-toolkit';

export declare function catalogTmplImport(path: NodePath<ImportDeclaration>, state: ComponentMetaState): void;
//# sourceMappingURL=catalog-tmpls.d.ts.map

@@ -5,1 +5,2 @@ import { type LWCErrorInfo } from '@lwc/errors';

export {};
//# sourceMappingURL=errors.d.ts.map

@@ -16,1 +16,2 @@ import type { Program } from 'estree';

export declare function addGenerateMarkupFunction(program: Program, state: ComponentMetaState, tagName: string, filename: string): void;
//# sourceMappingURL=generate-markup.d.ts.map

@@ -6,1 +6,2 @@ import type { ComponentTransformOptions } from '../shared';

};
//# sourceMappingURL=index.d.ts.map

@@ -19,1 +19,2 @@ import type { ImportDeclaration, ExportNamedDeclaration, ExportAllDeclaration } from 'estree';

export declare function replaceAllLwcExport(path: NodePath<ExportAllDeclaration>): void;
//# sourceMappingURL=lwc-import.d.ts.map
import type { ImportDeclaration } from 'estree';
import type { NodePath } from 'estree-toolkit';
export declare function removeDecoratorImport(path: NodePath<ImportDeclaration>): void;
//# sourceMappingURL=remove-decorator-import.d.ts.map
import type { Program } from 'estree';
export declare function addScopeTokenDeclarations(program: Program, filename: string, namespace: string | undefined, componentName: string | undefined): void;
//# sourceMappingURL=stylesheet-scope-token.d.ts.map

@@ -10,1 +10,2 @@ import type { NodePath } from 'estree-toolkit';

export declare function catalogStaticStylesheets(ids: string[], state: ComponentMetaState): void;
//# sourceMappingURL=stylesheets.d.ts.map

@@ -29,1 +29,2 @@ import type { ImportManager } from '../imports';

}
//# sourceMappingURL=types.d.ts.map

@@ -6,1 +6,2 @@ import type { NodePath } from 'estree-toolkit';

export declare function bWireAdaptersPlumbing(adapters: WireAdapter[]): BlockStatement[];
//# sourceMappingURL=wire.d.ts.map

@@ -5,1 +5,2 @@ import type { IfStatement as EsIfStatement } from 'estree';

export declare const bYieldTextContent: () => EsIfStatement;
//# sourceMappingURL=adjacent-text-nodes.d.ts.map

@@ -7,1 +7,2 @@ import type { ImportDeclaration as EsImportDeclaration } from 'estree';

};
//# sourceMappingURL=context.d.ts.map

@@ -5,1 +5,2 @@ import type { ComplexExpression as IrComplexExpression, Expression as IrExpression } from '@lwc/template-compiler';

export declare function expressionIrToEs(node: IrExpression | IrComplexExpression, cxt: TransformerContext): EsExpression;
//# sourceMappingURL=expression.d.ts.map

@@ -6,1 +6,2 @@ import { type Config as TemplateCompilerConfig } from '@lwc/template-compiler';

};
//# sourceMappingURL=index.d.ts.map

@@ -11,1 +11,2 @@ import type { ChildNode as IrChildNode, Node as IrNode } from '@lwc/template-compiler';

};
//# sourceMappingURL=ir-to-es.d.ts.map

@@ -23,1 +23,2 @@ import type { TransformerContext } from './types';

export declare function isLiteral(node: IrLiteral | IrExpression | IrComplexExpression): node is IrLiteral;
//# sourceMappingURL=shared.d.ts.map
import type { Comment as IrComment } from '@lwc/template-compiler';
import type { Transformer } from '../types';
export declare const Comment: Transformer<IrComment>;
//# sourceMappingURL=comment.d.ts.map
import type { Component as IrComponent } from '@lwc/template-compiler';
import type { Transformer } from '../../types';
export declare const Component: Transformer<IrComponent>;
//# sourceMappingURL=component.d.ts.map
export * from './component';
export * from './lwc-component';
//# sourceMappingURL=index.d.ts.map
import type { Transformer } from '../../types';
import type { LwcComponent as IrLwcComponent } from '@lwc/template-compiler';
export declare const LwcComponent: Transformer<IrLwcComponent>;
//# sourceMappingURL=lwc-component.d.ts.map

@@ -5,1 +5,2 @@ import type { Statement as EsStatement } from 'estree';

export declare function getSlottedContent(node: IrLwcComponent | IrComponent, cxt: TransformerContext): EsStatement[];
//# sourceMappingURL=slotted-content.d.ts.map

@@ -5,1 +5,2 @@ import { type Element as IrElement } from '@lwc/template-compiler';

export declare const Element: Transformer<IrElement | IrExternalComponent | IrSlot>;
//# sourceMappingURL=element.d.ts.map
import type { ForEach as IrForEach } from '@lwc/template-compiler';
import type { Transformer } from '../types';
export declare const ForEach: Transformer<IrForEach>;
//# sourceMappingURL=for-each.d.ts.map
import type { ForOf as IrForOf } from '@lwc/template-compiler';
import type { Transformer } from '../types';
export declare const ForOf: Transformer<IrForOf>;
//# sourceMappingURL=for-of.d.ts.map
import type { If as IrIf } from '@lwc/template-compiler';
import type { Transformer } from '../types';
export declare const LegacyIf: Transformer<IrIf>;
//# sourceMappingURL=legacyIf.d.ts.map
import type { ElseifBlock as IrElseifBlock, IfBlock as IrIfBlock } from '@lwc/template-compiler';
import type { Transformer } from '../types';
export declare const IfBlock: Transformer<IrIfBlock | IrElseifBlock>;
//# sourceMappingURL=lwcIf.d.ts.map
import type { Slot as IrSlot } from '@lwc/template-compiler';
import type { Transformer } from '../types';
export declare const Slot: Transformer<IrSlot>;
//# sourceMappingURL=slot.d.ts.map
import type { Text as IrText } from '@lwc/template-compiler';
import type { Transformer } from '../types';
export declare const Text: Transformer<IrText>;
//# sourceMappingURL=text.d.ts.map

@@ -18,1 +18,2 @@ import type { Node as IrNode } from '@lwc/template-compiler';

}
//# sourceMappingURL=types.d.ts.map

@@ -44,1 +44,2 @@ import type { Node as EsNode } from 'estree';

export {};
//# sourceMappingURL=estemplate.d.ts.map

@@ -8,1 +8,2 @@ import type { ImportDeclaration } from 'estree';

export declare const bImportDeclaration: (imports: string | string[] | Record<string, string | undefined>, source?: string) => ImportDeclaration;
//# sourceMappingURL=builders.d.ts.map

@@ -11,1 +11,2 @@ import type { Checker } from 'estree-toolkit/dist/generated/is-type';

export {};
//# sourceMappingURL=validators.d.ts.map

@@ -9,1 +9,2 @@ import type { ImportDeclaration } from 'estree';

}
//# sourceMappingURL=imports.d.ts.map

@@ -9,1 +9,2 @@ import { type CompilationMode } from '@lwc/shared';

export declare function compileTemplateForSSR(src: string, filename: string, options: TemplateTransformOptions, mode?: CompilationMode): CompilationResult;
//# sourceMappingURL=index.d.ts.map
import type { Instruction } from './shared';
export declare function optimize(instructions: Generator<Instruction>): Generator<Instruction>;
//# sourceMappingURL=optimizer.d.ts.map

@@ -38,1 +38,2 @@ import type { LwcBabelPluginOptions } from '@lwc/babel-plugin-component';

};
//# sourceMappingURL=shared.d.ts.map

@@ -51,1 +51,2 @@ import { traverse } from 'estree-toolkit';

export {};
//# sourceMappingURL=transmogrify.d.ts.map

13

package.json

@@ -7,3 +7,3 @@ {

"name": "@lwc/ssr-compiler",
"version": "8.12.2",
"version": "8.12.3",
"description": "Compile component for use during server-side rendering",

@@ -35,3 +35,4 @@ "keywords": [

"files": [
"dist"
"dist/**/*.js",
"dist/**/*.d.ts"
],

@@ -53,5 +54,5 @@ "scripts": {

"@babel/types": "7.26.3",
"@lwc/shared": "8.12.2",
"@lwc/errors": "8.12.2",
"@lwc/template-compiler": "8.12.2",
"@lwc/shared": "8.12.3",
"@lwc/errors": "8.12.3",
"@lwc/template-compiler": "8.12.3",
"acorn": "8.14.0",

@@ -64,5 +65,5 @@ "astring": "^1.9.0",

"devDependencies": {
"@lwc/babel-plugin-component": "8.12.2",
"@lwc/babel-plugin-component": "8.12.3",
"@types/estree": "^1.0.6"
}
}

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